Skip to content

Instantly share code, notes, and snippets.

@ThomasArdal
Created September 25, 2014 08:17
Show Gist options
  • Save ThomasArdal/07d7abf6f247a552a1c1 to your computer and use it in GitHub Desktop.
Save ThomasArdal/07d7abf6f247a552a1c1 to your computer and use it in GitHub Desktop.
Static usings
using System.Console;
...
if (bool.TryParse("true", out var result))
{
WriteLine("This is a bool with value. " + result);
}
else
{
WriteLine("Not a bool, yo! " + result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment