1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-01-17 05:28:37 +01:00

[C#/en] Fix to "extension methods"

over using "extension functions", it's more accurate.
This commit is contained in:
roymiloh 2015-10-31 17:20:03 +02:00
parent 5b0db44e7c
commit 23b35d9da0

View File

@ -630,7 +630,7 @@ on a new line! ""Wow!"", the masses cried";
public static class Extensions
{
// EXTENSION FUNCTIONS
// EXTENSION METHODS
public static void Print(this object obj)
{
Console.WriteLine(obj.ToString());