次のように、コードで問題が発生しました。
Option Explicit Off
Option Strict On 'Results in Compiler Error. Expected base or compare or explicit or private
Sub DoSomething()
Dim intOne As Integer 'This line works
intOne = 1 'This line works
Dim intTwo as Integer = 2 'Results in Compiler Error: Expected end of statement
End Sub
私の問題は、上記のコードにコメントとして書かれています。
完全に空のモジュールでも、Option Strict
オプションを有効にできません。
解決策は Visual Studio のオプションのどこかにあると思います。
注: エラー メッセージをドイツ語から手動で翻訳したので、上記と公式の英語版との違いを期待してください。