1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-09 16:26:53 +02:00

Merge pull request #1960 from roymiloh/master

[C#/en] Fix to "extension methods"
This commit is contained in:
Geoff Liu
2015-12-21 15:22:23 -05:00

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());