OPTION STRICT OFF成为OPTION STRICT ON

时间:2014-06-25 13:56:00

标签: vb.net

我有一个项目,我试图使OPTION STRICT ON而不是OPTION STRICT OFF。有没有办法根据编译器的功能自动修改代码,例如如果有陈述说:

dim strTest As String = "1"
dim intTest As Integer =  strTest

然后自动将其更改为:

dim strTest As String = "1"
dim intTest As Integer = cint(strTest)

还有一种方法可以查看Visual Studio中总共有多少错误?目前它只显示102个错误。

0 个答案:

没有答案