a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
18 lines
216 B
C#
18 lines
216 B
C#
enum ByteEnum : byte {
|
|
One = 1,
|
|
Two = 2
|
|
}
|
|
|
|
class X {
|
|
public static void Main ()
|
|
{
|
|
ByteEnum b = ByteEnum.One;
|
|
|
|
switch (b){
|
|
case ByteEnum.One : return;
|
|
case ByteEnum.One | ByteEnum.Two: return;
|
|
}
|
|
}
|
|
}
|
|
|