'CultureInfo.InvariantCulture'

  • Thread starter Thread starter cristian
  • Start date Start date
C

cristian

Can somebody to give me an example how to use

the invariant culture ('CultureInfo.InvariantCulture')

Thanks,
Cristian
 
* "cristian said:
Can somebody to give me an example how to use

the invariant culture ('CultureInfo.InvariantCulture')

\\\
Dim d As Double = 22.34234
Dim s As String = d.ToString(System.Globalization.CultureInfo.InvariantCulture)
MsgBox(s)
d = Double.Parse(s, System.Globalization.CultureInfo.InvariantCulture)
MsgBox(d.ToString())
///
 

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