ШН
Size: a a a
ШН
ШН
integral numeric type. rr
rr
rr
ШН
By default, the associated constant values of enum members are of type int; they start with zero and increase by one following the definition text order. You can explicitly specify any other integral numeric type as an underlying type of an enumeration type.ШН
ШН
ШН
var lol = Kek | Puk;ШН
lol это тот же энам, то есть тип у него такой же как у Kek и PukШН
ﺋﺋ

ШН
ﺋﺋ
ШН
public enum DocumentKey
{
None = 0,
One = 1,
Two = 2
}
var three = DocumentKey.One | DocumentKey.Two;
Console.WriteLine(three);
ШН
СИ
ﺋﺋ
ШН
ﺋﺋ