Gets the CultureInfo that represents the culture used by the current thread. : CultureInfo I18N « Internationalization I18N « VB.Net






Gets the CultureInfo that represents the culture used by the current thread.

 

Imports System
Imports System.Globalization
Imports System.Security.Permissions
Imports System.Threading

<assembly: SecurityPermission(SecurityAction.RequestMinimum, ControlThread := True)>
Public Class SamplesCultureInfo

   Public Shared Sub Main()
      Console.WriteLine("CurrentCulture is {0}.", CultureInfo.CurrentCulture.Name)

      Thread.CurrentThread.CurrentCulture = New CultureInfo("th-TH", False)
      Console.WriteLine("CurrentCulture is now {0}.", CultureInfo.CurrentCulture.Name)

   End Sub

End Class 

   
  








Related examples in the same category

1.List all Culture InformationList all Culture Information
2.String in Your LanguageString in Your Language
3.CurrentInfo for es-ES
4.Gets the culture types that pertain to the current CultureInfo object.
5.CultureInfo.DisplayName
6.whether the current CultureInfo represents a neutral culture.
7.Tells whether the current CultureInfo is read-only.
8.Gets the CultureInfo that represents the parent culture of the current CultureInfo.
9.Defines the types of culture lists that can be retrieved using the CultureInfo.GetCultures method.
10.Console fallback UI culture
11.Determines the specific cultures that use the Chinese language, and displays the parent culture
12.Comparing and Sorting Data for a Specific Culture
13.Gets the list of calendars that can be used by the culture.
14.Display string representations of numbers for en-us culture
15.Specific culture double value format