Skip to content

Instantly share code, notes, and snippets.

@tomwis
Last active August 18, 2017 16:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomwis/2429eb24100fe774c8de53301eeec02f to your computer and use it in GitHub Desktop.
Save tomwis/2429eb24100fe774c8de53301eeec02f to your computer and use it in GitHub Desktop.
int MagicNumber(string number)
{
int result = 0;
if(int.TryParse(number, out result))
{
return result;
}
return -1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment