英語で読む 編集

次の方法で共有


DataSet.Locale Property

Definition

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Gets or sets the locale information used to compare strings within the table.

C#
public System.Globalization.CultureInfo Locale { get; set; }
C#
[System.Data.DataSysDescription("DataSetLocaleDescr")]
public System.Globalization.CultureInfo Locale { get; set; }

Property Value

A CultureInfo that contains data about the user's machine locale. The default is null.

Attributes

Examples

The following example gets the CultureInfo for a DataSet and prints the DisplayName and EnglishName properties.

VB
Private Sub GetCultureInfo()
   Dim culture As System.Globalization.CultureInfo
   culture = DataSet1.Locale
   Console.WriteLine(culture.DisplayName, culture.EnglishName)
End Sub

Remarks

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.

注意

In columns that contain expressions, the InvariantCulture is used. The CurrentCulture is ignored.

Applies to

製品 バージョン
.NET Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0, 2.1

See also