2
Reply

Can we inherit enum in C#?

    hello

    Sachin
    Apr 09
    1

    No, not possible. Enums cannot inherit from other enums. In fact all enums must actually inherit from System.Enum . C# allows syntax to change the underlying representation of the enum values which looks like inheritance, but in actuality they still inherit from System.enum