I was fooling around with the Option settings in Visual Studio 2015 and I noticed an odd thing, after setting Option explicit to Off in three places I still get a error message saying "Declaration expected" if I try to use a variable without declaring it first. I set it to off in the properties of the project, by going to Tools>options>Projects and Solutions> VB Defaults, and in the code. Below is the code from a simple class I created just to test this.
Option Explicit Off
Public Class Class1
Test = "1"
End Class
The read squiggle appears under the undeclared Test variable. I have no intentions of turning Options explicit off in a real project but I wonder what the point is of having the option to do so if invoking it doesn't do anything. I'd appreciate a response from anyone who could enlighten me.