Check a string is number or not in C#
Check a string is number or not in C# [csharp] double result; bool isNumeric = double.TryParse(rdr[i].ToString(), out result); [/csharp] Here rdr[i].ToString() is my string to… Read More »Check a string is number or not in C#