Check a string is number or not in C#

Check a string is number or not in C#
 
  1. double result;  
  2. bool isNumeric = double.TryParse(rdr[i].ToString(), out result);  
  3. Here rdr[i].ToString() is my string to be checked .  
Kindest Regards
Sibeesh Venu
www.sibeeshpassion.com