diff options
author | roymiloh <rmiloh@gmail.com> | 2015-10-31 17:20:03 +0200 |
---|---|---|
committer | roymiloh <rmiloh@gmail.com> | 2015-10-31 17:20:03 +0200 |
commit | 23b35d9da0b3c1de5ff6a0b262b08020f0f56c4f (patch) | |
tree | e04278932c6ba4e642ae42220fbe3d62a3905065 /csharp.html.markdown | |
parent | 5b0db44e7c5f0a69dfa670eee13fbc011f76830a (diff) |
[C#/en] Fix to "extension methods"
over using "extension functions", it's more accurate.
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r-- | csharp.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown index dfdd98de..d6c503ae 100644 --- a/csharp.html.markdown +++ b/csharp.html.markdown @@ -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()); |