As explained here I have built a sample console application in which I change the culture in the Main function. It works well.
Now, building another sample winform application, I wonder where would be the best place to put this
Thread.CurrentThread.CurrentCulture = CultureInfo.CreateSpecificCulture ("en-US");
Thread.CurrentThread.CurrentUICulture=new CultureInfo("en-US");
If I put this in the constructor of a Form1, will this apply to all operations in this class?
What if this Form1 opens another form Form2 and an exception occurs there?
What if Form1 uses another class Class1?
I am willing to experiment in this, but if someone has an answer based on previous knowledge, I appreciate to hear it.