Format

  • Thread starter Thread starter ruca
  • Start date Start date
string numericString = "34235";
double doublevalue = Double.Parse(numericString);
 
Hi Ruca,

Some people love to give C++ answers instead of the cast answers.

Dim numericString As String = "342,35"
' Or "342.45" as that is used in the current.globalization.
Dim doublevalue As Double = CDbl(numericString)

Cor
 

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