我偶尔会发现Visual Studio 2015替换了我的消息框文本中的大量文本单词,例如,Not,Then,If而不是原始值not,then,if。
下面是MessageBox的原始示例:
MessageBox.Show("You did not specify comma-delimited filename. Please specify a comma-delimited filename.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
及以下是编辑器中错误的MessageBox语句的示例:
MessageBox.Show("You did Not specify comma-delimited filename. Please specify a comma-delimited filename.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Exclamation)
VS不应该更改用于消息框的文本 - 除非有一个开关设置导致这种灾难性的(烦人的)现象?