ENUMERATED Value Specification

An ENUMERATED value specification causes a reference to an enumerated singleton to be generated.

ASN.1 production:

   <name> <enumtype> ::= <enumitem>

Generated C# constants:

   public static readonly <enumtype> <name> = <enumtime>.ValueOf (<enumvalue); 

enumvalue will be the sequential integer value corresponding to the enumitem in enumtype.