How do you return an Enum from a setter/getter function?
Currently I have this:
public enum LowerCase { a, b, } public en
Use types... ie..
public Type ChooseCase{ get{ return typeof(Uppercase); } }