int.IsNumber()
Checks if an integer is a number
Source
public static bool IsNumber(this int i)
{
return true;
}
Example
5.IsNumber() // returns true
ExtensionMethod.NET Home of 880 C#, Visual Basic, F# and Javascript extension methods
Checks if an integer is a number
public static bool IsNumber(this int i)
{
return true;
}
5.IsNumber() // returns true