DataSet::Locale Property
Gets or sets the locale information used to compare strings within the table.
Assembly: System.Data (in System.Data.dll)
public: property CultureInfo^ Locale { CultureInfo^ get (); void set (CultureInfo^ value); }
Property Value
Type: System.Globalization::CultureInfoA CultureInfo that contains data about the user's machine locale. The default is nullptr.
The Locale property specifies the locale for which sorting applies.
By default, setting the Locale for a DataSet also sets the Locale for each DataTable object in that DataSet to the same value.
Note: |
|---|
In columns that contain expressions, the InvariantCulture is used. The CurrentCulture is ignored. |
The following example gets the CultureInfo for a DataSet and prints the DisplayName and EnglishName properties.
Private Sub GetCultureInfo() Dim culture As System.Globalization.CultureInfo culture = DataSet1.Locale Console.WriteLine(culture.DisplayName, culture.EnglishName) End Sub
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC, Xbox 360, Zune
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: