Skip to content

Instantly share code, notes, and snippets.

@ThomasArdal
Last active August 29, 2015 14:06
Show Gist options
  • Save ThomasArdal/bfe4800475be20f26ce9 to your computer and use it in GitHub Desktop.
Save ThomasArdal/bfe4800475be20f26ce9 to your computer and use it in GitHub Desktop.
TryParse boolean
bool result;
if (bool.TryParse("true", out result))
{
Console.WriteLine("This is a bool with value. " + result);
}
else
{
Console.WriteLine("Not a bool, yo! " + result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment