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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T21:44:04+00:00 2026-06-18T21:44:04+00:00

I have a simple interface ElementContainer (which is also an element) which holds a

  • 0

I have a simple interface ElementContainer (which is also an element) which holds a list with Elements in it:

interface IElementContainer : IElement 
{
    List<Element> Elements { get; }
}

Now I have a class implementing this interface:

class ConcreteContainer : IElementContainer
{
    List<IElement> Elements { get; private set; }
}

But I don’t want the class to be a container for all Elements but only for a subset of them, say SpecificElement, however this is not possible (ofcourse):

class SpecificElementContainer : IElementContainer
{
    List<SpecificElement> Elements { get; private set; }
}

Therefore I thought of something like:

class SpecificElementContainer : IElementContainer
{
    List<IElement> Elements { get; private set; }
    List<SpecificElement> SpecificElements
    {
       get 
       {
          return return Elements.FindAll(el => el is T).Select<IElement, T>(el => (T)el).ToList<T>();
       }
 }

But this way I can not do something like: SpecificContainer.SpecificElements.Add(...) since it not added to the Elements. And besides that… it smells fishy to do it like this.

Any clues how to restructure this in a sane way?

Edit after Jon Skeet’s answer

Reading Jons comment my problem is actually a little more complicated than I showed above but I forgot some very important information.

When I have a class which implements the above interface and the elements list is filled like this:

Elements = { ConcreteElementA, ConcreteElementA, ConcreteElementC, ConcreteElementB }

What I would like is that I could do this ConcreteContainer.ConcreteElementCs.Add(new ConcreteElementC()) which would result in:

Elements = { ConcreteElementA, ConcreteElementA, ConcreteElementC, ConcreteElementB, ConcreteElementC }

Additional edit

After some confusion I want to rephrase my question as follows:
I have a collection List<Element> OriginalCollection. I want to create a subset collection with elements which implement Element, ConcreteElement, List<ConcreteElement> Subset and add to that in such a way that OriginalCollection is also modified.

  • 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-18T21:44:05+00:00Added an answer on June 18, 2026 at 9:44 pm

    It sounds like your ElementContainer interface should be generic:

    interface ElementContainer<T> : Element where T : Element
    {
        List<T> Elements { get; }
    }
    

    Then:

    class SpecificElementContainer : ElementContainer<SpecificElement>
    {
        List<SpecificElement> Elements { get; private set; }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have following simple class: @interface Article: NSObject { NSString *title; } @property (copy,
I have a very simple interface which needs to communicate between processes. It's currently
I have the following simple class definition: //mycommon.h @interface CurrentPath : NSObject @property (nonatomic,
my question is rather simple, if you have an pure virtual class (interface) but
I have simple class with width and height member fields which define number of
I have this simple interface/class: public abstract class Message {} public class Message1 extends
I have simple static lib in xcode with the only class test.h: @interface TestClass
I'm using Xcode 4, have a simple class interface defined and I added NSTableViewDelegate
I have a simple interface for caching stuff which goes like this public interface
If I have a simple marker interface (contains no methods) which contains constants used

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.