namespace
Test
{
using
System
;
using
System
.
Reflection
;
public
class
AnotherEp
{
public
static
void
Main
()
{
int
a
=
(
int
)
AnEnumeration
.
B
;
int
b
=
(
int
)
B
.
anenum
;
Console
.
WriteLine
(
"{0} == {1} => {2}"
,
a
,
b
,
a
==
b
);
}
}
}