Skip to content

Instantly share code, notes, and snippets.

@cullen-tsering
Created August 6, 2014 19:47
Show Gist options
  • Save cullen-tsering/9302f9b72ec5ab55fecf to your computer and use it in GitHub Desktop.
Save cullen-tsering/9302f9b72ec5ab55fecf to your computer and use it in GitHub Desktop.
string extension IsNumeric in c#
public static class StringExtension
{
public static bool IsNumeric(this string str)
{
double n;
return Double.TryParse(str, out n);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment