1Imports S = System
2
3Enum E1
4    e
5End Enum
6
7Enum B1 As Byte
8    e
9End Enum
10Enum SB1 As SByte
11    e
12End Enum
13Enum S1 As Short
14    e
15End Enum
16Enum US1 As UShort
17    e
18End Enum
19Enum I1 As Integer
20    e
21End Enum
22Enum UI1 As UInteger
23    e
24End Enum
25Enum L1 As Long
26    e
27End Enum
28Enum UL1 As ULong
29    e
30End Enum
31
32Enum B2 As System.Byte
33    e
34End Enum
35Enum SB2 As System.SByte
36    e
37End Enum
38Enum S2 As System.Int16
39    e
40End Enum
41Enum US2 As System.UInt16
42    e
43End Enum
44Enum I2 As System.Int32
45    e
46End Enum
47Enum UI2 As System.UInt32
48    e
49End Enum
50Enum L2 As System.Int64
51    e
52End Enum
53Enum UL2 As System.UInt64
54    e
55End Enum
56
57Enum B3 As S.Byte
58    e
59End Enum
60Enum SB3 As S.SByte
61    e
62End Enum
63Enum S3 As S.Int16
64    e
65End Enum
66Enum US3 As S.UInt16
67    e
68End Enum
69Enum I3 As S.Int32
70    e
71End Enum
72Enum UI3 As S.UInt32
73    e
74End Enum
75Enum L3 As S.Int64
76    e
77End Enum
78Enum UL3 As S.UInt64
79    e
80End Enum
81
82