I am struggling to get my pea brain around this one.
I want to create a static class which holds an enumeration. Something like :
I want to be able to do something like this :VB Code:
Static class enumTypes { public enum choice { choice1, choice2 } }
VB Code:
If (myThingy = enumTypes.choice.choice1) { //do something } else { //do something else }
The exact syntax is troubling me because I am silly.
