Skip to content

Instantly share code, notes, and snippets.

@DynamicField
Created March 12, 2016 20:07
Show Gist options
  • Save DynamicField/55f480615d99e650b7e0 to your computer and use it in GitHub Desktop.
Save DynamicField/55f480615d99e650b7e0 to your computer and use it in GitHub Desktop.
Extension for printing a object into the console.
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