Hello!!
How can I get the default culture on the computer?
thanks!
dekelc
Printable View
Hello!!
How can I get the default culture on the computer?
thanks!
dekelc
Code:using System;
public class SamplesCultureInfo
{
public static void Main()
{
Console.WriteLine( "Culture-Name is {0}.", System.Globalization.CultureInfo.CurrentCulture.Name);
Console.WriteLine( "Language-Country/Region is {0}.", System.Globalization.CultureInfo.CurrentCulture.NativeName);
}
}