Gets or sets the locale information used to compare strings within the table.
Namespace:
System.Data
Assembly:
System.Data (in System.Data.dll)
Visual Basic (Declaration)
Public Property Locale As CultureInfo
Dim instance As DataTable
Dim value As CultureInfo
value = instance.Locale
instance.Locale = value
public CultureInfo Locale { get; set; }
public:
property CultureInfo^ Locale {
CultureInfo^ get ();
void set (CultureInfo^ value);
}
public function get Locale () : CultureInfo
public function set Locale (value : CultureInfo)
A CultureInfo represents the software preferences of a particular culture or community.
When used for string comparisons, the CultureInfo affects sorting, comparisons, and filtering.
The following example sets the CultureInfo through the Locale and prints the ISO language name.
Private Sub ChangeCultureInfo(table As DataTable)
' Print the LCID of the present CultureInfo.
Console.WriteLine(table.Locale.LCID)
' Create a new CultureInfo for the United Kingdom.
Dim myCultureInfo As CultureInfo = New CultureInfo("en-gb")
table.Locale = myCultureInfo
' Print the new LCID.
Console.WriteLine(table.Locale.LCID)
End Sub
private void ChangeCultureInfo(DataTable table)
{
// Print the LCID of the present CultureInfo.
Console.WriteLine(table.Locale.LCID);
// Create a new CultureInfo for the United Kingdom.
CultureInfo myCultureInfo = new CultureInfo("en-gb");
table.Locale = myCultureInfo;
// Print the new LCID.
Console.WriteLine(table.Locale.LCID);
}
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.
.NET Framework
Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
.NET Compact Framework
Supported in: 3.5, 2.0, 1.0
XNA Framework
Supported in: 3.0, 2.0, 1.0
Reference
Other Resources