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 8062781
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T10:47:16+00:00 2026-06-05T10:47:16+00:00

Can Enum contains other Enum elements along with its own elements ? public enum

  • 0

Can Enum contains other Enum elements along with its own elements ?

public enum CardSuit
{
    spades,
    hearts,
    diamonds,
    clubs 
}

public enum GameSuit
{
    spades,        //        These are 
    hearts,        //        the same
    diamonds,      //      " CardSuit "
    clubs,         //        elements

    suns    //             " GameSuit " special element
}

Can we include CardSuit in GameSuit without redundant retyping same elements ?

  • 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-06-05T10:47:18+00:00Added an answer on June 5, 2026 at 10:47 am

    Sadly no, there’s no good solution for what you want using enums. There are other options you can try, such as a series of public static readonly fields of a particular “enum-like” type:

    public class CardSuit 
    {
        public static readonly CardSuit Spades = new CardSuit();
        public static readonly CardSuit Hearts = new CardSuit();
        ...
    }
    
    public enum GameSuit : CardSuit 
    {
        public static readonly GameSuit Suns = new GameSuit();
    }
    

    In practice, this can work mostly as well, albeit without switch statement support. Usage might be like:

    var cardSuit = ...;
    if (cardSuit == CardSuit.Spades || cardSuit == GameSuit.Suns) { ... }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have public enum BaseActions implements Actions{ STAND (0,0,0), TURN (1,1,1); //other stuff }
I was wondering whether or not I can extend the Enum type in C#
How can I effective extend enum to have more than 2 options. I am
With enum under .net the biggest number you can use is ULong. This mean
Can someone shed some light on the semantics for accessing an enum defined in
How can i know the size of the enum Days ? Will it be
How can I map a mysql field of type enum to a grails domain
How can I get the number of items defined in an enum?
As I know I can define a new Enum DataFormat at the my project
Can someone explain to me what the exact meanings of the three JniHandleOwnership enum

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.