Skip to content

Instantly share code, notes, and snippets.

@ThomasArdal
Created September 25, 2014 08:07
Show Gist options
  • Save ThomasArdal/ec04af58cf66aa9cdccc to your computer and use it in GitHub Desktop.
Save ThomasArdal/ec04af58cf66aa9cdccc to your computer and use it in GitHub Desktop.
TryParse boolean with declaration expression
if (bool.TryParse("true", out var 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