All locales added to C1.
Namespace: Composite.DataAssembly: Composite (in Composite.dll) Version: 5.3.6135.33083
Syntax
C# |
---|
public static IEnumerable<CultureInfo> AllLocales { get; } |
Visual Basic |
---|
Public Shared ReadOnly Property AllLocales As IEnumerable(Of CultureInfo) Get |
Visual C++ |
---|
public: static property IEnumerable<CultureInfo^>^ AllLocales { IEnumerable<CultureInfo^>^ get (); } |
Examples
Here is an example of how to enumerate all locales added to C1.
CopyC#
foreach (CultureInfo locale in DataConnection.Locales) { // Use the locale }