Skip to content

Instantly share code, notes, and snippets.

@atsvetkov
Created December 25, 2016 21:08
Show Gist options
  • Save atsvetkov/d2380a846b78cccd8fab1bf8ec1fcc6f to your computer and use it in GitHub Desktop.
Save atsvetkov/d2380a846b78cccd8fab1bf8ec1fcc6f to your computer and use it in GitHub Desktop.
try
{
if (IntegerParser.TryParse(number, out int result))
{
Console.WriteLine($"Parsed {number.GetType()} {number}, got {result}");
}
else
{
Console.WriteLine($"Could not parse {number.GetType()} {number}");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment