2
Reply

Enum is Reference Type or Value Type?

Sudhir Goswami

Sudhir Goswami

14y
15.3k
0
Reply

    enumerations are of value type. They are created and stored on the stack and passed to the methods by making a copy of the value (by value).

    Enums are value type.