TOC PREV NEXT INDEX


ENUMERATED Value Specification



An ENUMERATED value specification causes a C# integer constant to be generated.

ASN.1 production:

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

Generated C# constants:

	public static readonly int <name> = <enumvalue>;
 

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



Objective Systems, Inc.

102 Pickering Way, Suite #506
Exton, Pennsylvania 19341
http://www.obj-sys.com
Phone: (484) 875-9841
Toll-free: (877) 307-6855 (US only)
Fax: (484) 875-9830
info@obj-sys.com
TOC PREV NEXT INDEX