getsystemdefaultlcid (kernel32)
Last changed: anonymous

.
Summary

C# Signature:

[DllImport("kernel32.dll")]
static extern uint GetSystemDefaultLCID();

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

    public static void Main()
    {
        try
        {
        Console.WriteLine(GetSystemDefaultLCID());        
        }
        catch (Exception ex)
        {
        Console.WriteLine(ex);
        }
    }

Alternative Managed API:

Do you know one? Please contribute it!

Documentation