Skip to content

Instantly share code, notes, and snippets.

@digioz
Created June 30, 2015 22:07
Show Gist options
  • Save digioz/68f4110c5647464ea064 to your computer and use it in GitHub Desktop.
Save digioz/68f4110c5647464ea064 to your computer and use it in GitHub Desktop.
The C# Equivalent of the VB.NET IsNumeric Function
static bool IsNumeric(object Expression)
{
bool isNum;
double retNum;
isNum = Double.TryParse(Convert.ToString(Expression), System.Globalization.NumberStyles.Any, System.Globalization.NumberFormatInfo.InvariantInfo, out retNum );
return isNum;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment