How do you return an Enum from a setter/getter function?
Currently I have this:
public enum LowerCase { a, b, } public en
That error is being thrown because LowerCase is a type. Imagine if you were trying to write this statement.
return Int32;
That would not work because Int32 is a type and not a variable. You will need to create an instance of LowerCase and then you can return it.