Created
March 12, 2016 20:07
-
-
Save DynamicField/55f480615d99e650b7e0 to your computer and use it in GitHub Desktop.
Extension for printing a object into the console.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class Extensions { | |
public static void Print(this object obj) { | |
Console.WriteLine(obj.ToString()); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment