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 = ...
///
 
Back
Top