Setting Locale

How i can set program locale to other language
in windows applications in c#
last times i was programming in VC++ 6.0 i user setLocale() function to change the locale but no i can't find it in c#!
thans a lot
hassan azizi


Answer this question

Setting Locale

  • Scott Nonnenberg

    System.Threading.Thread.CurrentThread.CurrentUICulture
    System.Threading.Thread.CurrentThread.CurrentCulture

    Set them to a new CultureInfo object.

  • Setting Locale