public void TestMethod()
{
string strNumber = "4";
bool isNumeric = strNumber.IsNumeric();
}
public static class ExtensionMethods
{
public static bool IsNumeric(this string str)
{
float Numeric;
return float.TryParse(str, out Numeric);
}
}
{
string strNumber = "4";
bool isNumeric = strNumber.IsNumeric();
}
public static class ExtensionMethods
{
public static bool IsNumeric(this string str)
{
float Numeric;
return float.TryParse(str, out Numeric);
}
}