Add the abilty to set CultureInfo
I live in sweden and swedish Exception message are quite useless when posting online (in help formus) etc. Would be greate to set the CultureInfo so Linqpad returns English exception messages.
4
votes
Niels Bosma
shared this idea
-
Niels Bosma commented
Found a workaround btw:
Add the following in the top of a linqpad file:
Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture ("en-US");
Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo("en-US");