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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T01:41:30+00:00 2026-06-15T01:41:30+00:00

I have two Enumerators and a method that takes an enumerator. They are called

  • 0

I have two Enumerators and a method that takes an enumerator. They are called ABC and DEF and the method is called TestMethod(Enum myEnum). Code is below:

public enum ABC
{
    Zero,
    One,
    Two
};

public enum DEF
{
    Zero,
    One,
    Two
};

public void TestEnum(Enum myEnum)
{
    ...
}

The function TestEnum takes any enumerator. How can I test which one of the two does the passed in parameter belong to? I could blindly start testing it out with try / catch casting but sheesh that’s ugly. Any cleaner ways of doing this? Thank you in advance for any help.

  • 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-15T01:41:31+00:00Added an answer on June 15, 2026 at 1:41 am

    How can I test which one of the two does the passed in parameter belong to?

    You can just call GetType:

    Type type = myEnum.GetType();
    

    It’s not clear what you want to do with it after that, mind you.

    Alternatively:

    if (myEnum is ABC)
    {
    }
    else if (myEnum is DEF)
    {
    }
    

    EDIT: If you’re able to change the method signature and if your callers will know the type, then as per Jeppe’s comment, you could use:

    public void TestEnum<T>(T value) where T : struct
    {
        // Use typeof(T) here
    }
    

    You can’t constrain T to be an enum type with normal C#… although there are hacky ways of writing code with such constraints applied via post-processing.

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

Sidebar

Related Questions

I have two Enumerations and a method that takes an enumeration as a parameter.
I have two enums in my code: enum Month {January, February, March, April, May,
I have a class called GenericPermutations that is both enumerable and an enumerator. Its
I have two separate actions that are enumerators. One can be run independently, the
I have a public facing interface that I'm trying to map two different enumerations
I have two columns say Main and Sub . (they can be of same
I have a third party api, which has a class that returns an enumerator
The C standard defines that two identifiers have same scope if and only if
Have two issues one is showFromToolbar statement format warning issue and another is that
I have two methods that do the same thing. The first one makes performance

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.