Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3695040
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T04:34:10+00:00 2026-05-19T04:34:10+00:00

Possible Duplicate: Enum “Inheritance” I have a number of classes which extend an abstract

  • 0

Possible Duplicate:
Enum “Inheritance”

I have a number of classes which extend an abstract class. The abstract parent class defines an enum with a set of values. Some of the subclasses inherit the parent class’s enum values, but some of the subclasses need the enum values to be different. Is there any way to somehow override the enum for these particular subclasses, and if not, what is a good way to achieve what I’m describing?

class ParentClass
{
    private MyEnum m_EnumVal;
    public virtual MyEnum EnumVal
    {
        get { return m_EnumVal; }
        set { m_EnumVal = value; }
    }

    public enum MyEnum { a, b, c };
}

class ChildClass : ParentClass
{
    private MyEnum m_EnumVal;
    public virtual MyEnum EnumVal
    {
        get { return m_EnumVal; }
        set { m_EnumVal = value; }
    }

    public enum MyEnum { d, e, f };
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-19T04:34:11+00:00Added an answer on May 19, 2026 at 4:34 am

    The other answers are true, if you don’t own or can’t modify the original base class or enumeration. If you can, then you could use the typesafe enum pattern. It allows you to define your own enum types, not derived from enum, that do whatever you want them to do (including support inheritance).

    public class MyEnum
    {
      public static readonly MyEnum A = new MyEnum("A");
      public static readonly MyEnum B = new MyEnum("B");
      public static readonly MyEnum C = new MyEnum("C");
    
      public override string ToString()
      {
        return Value;
      }
    
      protected MyEnum(string value)
      {
        this.Value = value;
      }
    
      public string Value { get; private set; }
    }
    
    public sealed class MyDerivedEnum : MyEnum
    {
      public static readonly MyDerivedEnum D = new MyDerivedEnum("D");
    
      private MyDerivedEnum(string value)
        : base(value)
      {
      }
    }
    
    class Program
    {
        static void Main(string[] args)
        {
            MyEnum blah = MyEnum.A;
            System.Console.WriteLine(blah);
            blah = MyDerivedEnum.D;
            System.Console.WriteLine(blah);
        }
    }
    

    A
    D
    Press any key to continue . . .

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Enum with strings Is it possible to have string constants in enum
Possible Duplicate: How do I enumerate an enum? Say I have an enum type
Possible Duplicate: How to detect if JavaScript is disabled? I have a website which
Possible Duplicate: How do I serialize an enum value as an int? Hi, all!
Possible Duplicate: C#: How to enumerate an enum? The subject says all. I want
Possible Duplicate: NAnt or MSBuild, which one to choose and when? What is the
Possible Duplicate: How does the Google Did you mean? Algorithm work? Suppose you have
Possible Duplicate: What’s the best way to implement an ‘enum’ in Python? What is
Possible Duplicate: Why use enum when #define is just as efficient? When programming in
Possible Duplicate: add values to enum Why enums in Java cannot inherit from other

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.