Results 1 to 2 of 2

Thread: [2.0] How do I get the system culture?

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Aug 2000
    Location
    I'm right here!
    Posts
    849

    Question [2.0] How do I get the system culture?

    Hello!!

    How can I get the default culture on the computer?

    thanks!
    dekelc
    Dekel C.

  2. #2
    Smitten by reality Harsh Gupta's Avatar
    Join Date
    Feb 2005
    Posts
    2,938

    Re: [2.0] How do I get the system culture?

    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);
    	}
    }
    Show Appreciation. Rate Posts.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width