I'm making the switch from VB.NET to C#, and I've found it pretty easy so far, except for public variables.
In VB.NET, my startup class would be something like this...
Public Class clsCore
Public O as clsOptions
...
End Class
In C#, I tried
public class clsCore
{
public clsOptions O;
...
}
But that gives me:
How do I go about doing it?