I want to declare a nested enum like:
\\\\pseudocode public enum Animal { dog = 0, cat = 1 } private enum dog { bulldog = 0, greyhound = 1, hus
Simply, no, it cannot.
I recommend that you define all of the values within the Animal enum. Is there any reason why you want this particular structure?
Animal