2
Reply

Can we inherit enum in C#?

Rathrola Prem Kumar

Rathrola Prem Kumar

Jan 05, 2018
135
0

    hello

    Sachin
    April 09, 2024
    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

    Rathrola Prem Kumar
    January 05, 2018
    1