VS / VB不断更改字符串的大小写

时间:2016-06-28 18:50:58

标签: vb.net visual-studio-2012

假设我在VS2013中有这个VB.net代码:

Y = "This is a test of some text."
Z = "And this is another line of text where its longer."

现在我意识到在Y中输出我的循环迭代器会很有用,所以我点击Y并开始输入...

Y = "This is a test of some text on "."
Z = "And this is another line of text where its longer."

既然我没有收尾报价,VS会将其解释为字符串(正如您在SO中的着色中所看到的那样,MU解析器也是如此!)...

Y = "This is a test of some text on " &." Z = "

这意味着Y和Z是“开放”字符串。现在我完成打字,VS就是这样做......

Y = "This is a test of some text on " & i & "."
Z = "And this Is another line Of text Where its longer."

由于“is”,“where”和“and”之类的字符串是Linq关键字,因此VS很高兴地“修复”了我的骆驼外壳。它在函数结束时执行此操作,这可能会导致数十行出现。

请告诉我有一种简单的方法可以解决这个问题吗?

更新:实际例子

0 个答案:

没有答案