I think I understand from a previous post that an Enumerable is that allows me to do stuff like:

MyFunction("somestring", MyEnum.MeaningfulName)

Where the function does something, and the MyEnum contains a series of numeric designators assigned to meaningful names. The function then decides what to do based on those meaningful names.

I'd like to to create my own Enumerable (MyEnum) with my own series of designations. But I can't find a simple example of how to do this online. Everything I find is overcomplicated and blown out of proportion so badly that I can't begin to decipher from all the noise how I'd go about just doing what I want--which is really basic.

I just need to know the basic syntax involved in defining an enumerable. I already know how to use it once it's defined.