有没有办法在不安装/卸载的情况下将 Visual Studio 2010 区域设置设置为英语? (又名。如何将小数点分隔符从点更改为逗号?)
我检查过类似的问题,并且注意到大多数解决方案都涉及重新安装 VS 或安装解决此问题的软件包,我正在寻找一种通过调整设置(如果可能)来解决此问题的方法,所以请不要提交任何涉及安装/卸载的答案。
我在 Windows 7 上运行 Visual Studio 2010,我已将区域设置设置为英语,因此大多数消息默认为英语,但我已将“格式”和“语言”设置为瑞典语/瑞典(请参阅“控制面板”>“语言”)。地区和语言)。 我遇到的问题是,例如,我必须输入双精度值作为 2,0 而不是 2.0,我希望能够输入点作为小数分隔符而不是逗号。
bool b = double.tryParse("2.0", out dbl);
返回 false 并且 dbl 的值没有改变,因为我机器上的 VS 无法识别 .作为小数点分隔符,我必须这样写:
bool b = double.tryParse("2,0", out dbl);
返回 true 并将 2.0 分配给 dbl 变量,因为我的机器可以识别, 作为小数点分隔符。
I've checked similar questions and I've noted that most solutions involve re-installing VS or installing packages that resolve this issue, I'm looking for a way to fix this issue by adjusting settings if possible, so please don't submit any answers that involve installing/uninstalling.
I'm running Visual Studio 2010 on Windows 7, I've set the locale to English so it defaults most messages to English but I've got the "Formats" and "Language" set to Swedish/Sweden (see Control Panel > Region and Language).
The problem I'm having is for example that I have to type double values as 2,0 instead of 2.0, I want to be able to type the dot as a separator for decimals and not the comma.
bool b = double.tryParse("2.0", out dbl);
Returns false and the value of dbl is not changed because VS on my machine doesn't recognize . as a decimal separator, instead I have to write this:
bool b = double.tryParse("2,0", out dbl);
Returns true and assigns 2.0 to the dbl variable, because my machine recognizes , as a decimal separator.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论