Convert C# string to decimal

  • Thread starter Thread starter STom
  • Start date Start date
Hi S,

Use double's built-in Parse method:

string s = "123.45";
double d = double.Parse(s);

All System numerical value types (int, long, float, etc) have a parse
method.

ok,
aq
 
Back
Top