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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T21:11:27+00:00 2026-05-25T21:11:27+00:00

How to use enum datatype in interface? Is this possible? public interface IParent1 {

  • 0

How to use enum datatype in interface?

Is this possible?

public interface IParent1
{
    string method1(Test enum);
}

public class Parent1 : IParent1
{
    public enum Test 
    {
        A, 
        B, 
        C
    }

    public string method1(Test enum)
    {
        return enum.ToString();
    }
}
  • 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-25T21:11:27+00:00Added an answer on May 25, 2026 at 9:11 pm

    enum is a reserved keyword in C#. You can prefix it with @ if you want to use it as variable name:

    public enum Test { A, B, C };
    
    public interface IParent1
    {
        string method1(Test @enum);
    }
    
    public class Parent1 : IParent1
    {
        public string method1(Test @enum)
        {
            return @enum.ToString();
        }
    }
    

    But I don’t like using reserved words for variable names. A better approach would be:

    public enum Test { A, B, C };
    
    public interface IParent1
    {
        string method1(Test test);
    }
    
    public class Parent1 : IParent1
    {
        public string method1(Test test)
        {
            return test.ToString();
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to use Enum in Android like this? public enum EventAction {
I need to use this enum in my C# application, but it won't let
With enum under .net the biggest number you can use is ULong. This mean
If I use /clr:oldSyntax the following should work: public __value enum IceCreamFlavors { Vanilla,
I'm going to use enum flags for options to initialize my class. The enum
Possible Duplicate: Why use enum when #define is just as efficient? When programming in
Possible Duplicate: Enum type constraints in C# Is it possible to use enum types
Please see the following code: #include <iostream> #include <string> using namespace std; enum dataType
In native C++ we could use enum trick in class definition: namespace EFoo {
Is it possible to do this? I need to use: this.ControlName.DataBindings.Add (...) so I

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.