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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top