tags:

views:

79

answers:

2

Hi,

Each thread inherits the default Windows culture unless you change it by accessing the current thread through services provided by the System.Threading namespace.

Do you know if it possible to change the default Application culture info instead of setting eac new thread with the culture info of its parent.

Thanks! Ronen

A: 

Unfortunately there's no application-wide setting for the default culture for new threads. The default culture of a thread is set by Windows when it is created.

nukefusion
+1  A: 

I agree with nukefusion. you have to change the culture every time thread gets initialized.

PradeepGB