disable broken tests on net_4_0
[mcs.git] / docs / ecma334 / 21.xml
blobfddc5ec5aa4d0e70fa084139d64baef97a4bd3bb
1 <?xml version="1.0"?>
2 <clause number="21" title="Enums">
3   <paragraph>An enum type is a distinct type that declares a set of named constants. <example>[Example: The example <code_example><![CDATA[
4 enum Color  
5 {  
6    Red,  
7    Green,  
8    Blue  
9 }  
10 ]]></code_example>declares an enum type named Color with members Red, Green, and Blue. end example]</example> </paragraph>
11 </clause>