Skip to content

Instantly share code, notes, and snippets.

@sorted-bits
Created October 20, 2011 19:26
Show Gist options
  • Save sorted-bits/1302057 to your computer and use it in GitHub Desktop.
Save sorted-bits/1302057 to your computer and use it in GitHub Desktop.
Validating Int from string
public static bool IsInt(this string text)
{
int integer = 0;
return Int32.TryParse(text, out integer);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment