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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:00:48+00:00 2026-05-27T17:00:48+00:00

I am trying to have a List of classes that implement a generic class

  • 0

I am trying to have a List of classes that implement a generic class and be able to access some members of the GenericClass through the abstract base. This is where I am at the moment:

public abstract class AbstractParent: UserControl
{
    public abstract AAction Action { get; set; }
}

public abstract class GenericBase<ActionType> : AbstractParent 
{
    protected ActionType _action;

    new public ActionType Action
    {
        set { _action = value; }
        get { return _action; }
    }
}

In order to have a list of GenericBase<> instances, I use a List<AbstractParent>

The problem is that I want a public property of the genericType (passed by the derived class from GenericBase).

The error at the moment is Action hides inherited abstract member Action.get.
I know that I can either have an abstract proprty and an implementation, or implementation and new modifier in the derived property. Both don’t fit in this situation.

example of what I want:

GenericBase<BlueAction> blueClass;
blueClass.Action <- I want this member to be of BlueAction type
  • 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-27T17:00:48+00:00Added an answer on May 27, 2026 at 5:00 pm
    public interface IActionable 
    {
      public ActionType Action { get; }
    }
    
    public class ActionableWrapper : IActionable
    { 
    
      private ActionType _action;
    
      public ActionableWrapper(IActionable Actionable)
      {
        this._action = Actionable;
      }
    
      new public ActionType Action 
      { 
        get { return _action; } 
      } 
    } 
    
    public class BlueAction: IActionable
    {
      public ActionType Action { get; }
    }
    

    This does what you want, granted not using generics. Since I can’t figure out WHY you’d want a List<ActionableWrapper> when instead of using generics you could just use an interfaces and make it simplely List<IActionable>.

    I am trying to have a List of classes that implement a generic class and be able to access some members of the GenericClass through the abstract base.

    Using Linq you can do this easily anyway (using your example):

    List<AbstractParent> AbstractParentCollection = new List<AbstractParent>();
    GenericBase<BlueAction> blueClass;     
    AbstractParentCollection.Add(blueClass);
    AbStractParentCollection.Typeof(GenericBase<BlueAction>).First().Action...
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an abstract class foo that contains some properties and methods. I have
I am trying to output some Java objects as JSON, they have List properties
I have a List of customers that I'm trying to bind to a DataGridView.
I have a List in the main application and I am trying to access
I have a list of files that I'm trying to copy and move (using
I have three classes that pose a problem when trying to add a new
I've been having some problems trying to implement an overloaded << operator function that
I am given some skeletons of classes that I must implement (I personally don't
I'm trying to generate the correct mapping for 2 classes that have a collection
I have a list and I am trying to add the data to the

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.