Thread.CurrentCulture Property
Gets or sets the culture for the current thread.
Assembly: mscorlib (in mscorlib.dll)
Property Value
Type: System.Globalization.CultureInfoAn object that represents the culture for the current thread.
| Exception | Condition |
|---|---|
| ArgumentNullException | The property is set to null. |
The CultureInfo object that is returned by this property, together with its associated objects, determine the default format for dates, times, numbers, currency values, the sorting order of text, casing conventions, and string comparisons. See the CultureInfo class to learn about culture names and identifiers, the differences between invariant, neutral, and specific cultures, and the way culture information affects threads and application domains. See the CultureInfo.CurrentCulture property to learn how a thread's default culture is determined, and how users set culture information for their computers.
Beginning with the .NET Framework 4, you can set the CurrentCulture property to a neutral culture. This is because the behavior of the CultureInfo class has changed: When it represents a neutral culture, its property values (in particular, the Calendar, CompareInfo, DateTimeFormat, NumberFormat, and TextInfo properties) now reflect the specific culture that is associated with the neutral culture. In earlier versions of the .NET Framework, the CurrentCulture property threw a NotSupportedException exception when a neutral culture was assigned.
The following code example shows the threading statement that allows the user interface of a Windows Forms to display in the culture that is set in Control Panel. Additional code is needed.
Imports System.Threading Imports System.Windows.Forms Public Class UICulture : Inherits Form Sub New() ' Set the user interface to display in the ' same culture as that set in Control Panel. Thread.CurrentThread.CurrentUICulture = _ Thread.CurrentThread.CurrentCulture ' Add additional code. End Sub Shared Sub Main() Application.Run(New UICulture()) End Sub End Class
for setting the property. Associated enumeration: SecurityPermissionFlag.ControlThread
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0