在显示win32/.net例外消息时,如何让我的应用程序始终使用英语?
我收到了这条消息,看起来有人用babelfish来翻译它(它是瑞典语):"System.ComponentModel.Win32Exception:Programmet kunde inte starta eftersom programmets sida-vid-sidakonfigurationärfelaktig."
非常无益,谷歌有4次点击,没有一个有用.所以我必须猜测原始邮件是什么,并谷歌.(原来是:"应用程序无法启动,因为它的并排配置不正确.")
这一次,找出原始的错误信息是相当简单的,从一开始就用英语留言当然会节省我的时间.
那我该怎么做?
你可以尝试设置Thread.CurrentThread.CurrentUICulture
和/或.CurrentCulture
到CultureInfo("en-US")
.