diff options
author | Geoff Liu <cangming.liu@gmail.com> | 2015-12-21 15:22:23 -0500 |
---|---|---|
committer | Geoff Liu <cangming.liu@gmail.com> | 2015-12-21 15:22:23 -0500 |
commit | c139e9aefe157fcb7978a7e24ff3289f295c8ef5 (patch) | |
tree | 26e7003478e136e5c5d35d859c3b689367436ca1 | |
parent | a729eebccab0bc93684d1ec9651fa9cf7fdb5f77 (diff) | |
parent | 23b35d9da0b3c1de5ff6a0b262b08020f0f56c4f (diff) |
Merge pull request #1960 from roymiloh/master
[C#/en] Fix to "extension methods"
-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 677c2591..7d7f4340 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()); |