How to include System.Globalization in my VB project

  • Thread starter Thread starter Domac
  • Start date Start date
D

Domac

Please i have a problem,
System.Globalization is not listed in my .net references list ???

How to include it , i need CultureInfo object to format string to currency!


Thanks!
 
Domac said:
System.Globalization is not listed in my .net references list ???

How to include it , i need CultureInfo object to format string to
currency!

Simply import the namespace, you do not need any additional references:

\\\
Imports System.Globalization
....
Dim c As CultureInfo = ...
///
 
Thanks!!!!



Simply import the namespace, you do not need any additional
references:
\\\
Imports System.Globalization
...
Dim c As CultureInfo = ...
///
 

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