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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:22:08+00:00 2026-05-23T03:22:08+00:00

So I have an object the inherits a list. public class Foo: List<Bar> And

  • 0

So I have an object the inherits a list.

public class Foo: List<Bar>

And I want to reorder it by BarDate which is a property on Bar

For example

Foo testFoo = GetFoo();

testFoo = testFoo.OrderBy(b => b.BarDate).ToList();

but testFoo is of type Foo not List so how could I do the cast?

Thanks

  • 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-23T03:22:09+00:00Added an answer on May 23, 2026 at 3:22 am

    You can’t do that. You are setting a reference to a derived class an instance of its base which won’t work.

    The reference testFoo can only be a Foo or an object derived from Foo (List<Bar> is a base class of Foo)

    You can, however, do something like this:

    public class Foo : List<Bar>
    {
        public Foo()
        {}
    
        public Foo(IEnumerable<Bar> collection)
            : base(collection)
        {}
    }
    

    And in your code later on:

    Foo testFoo = new Foo();
    testFoo = new Foo(testFoo.OrderBy(b => b.BarDate));
    

    The LINQ expression will return an IEnumerable<Bar>, so is compatible with one of the constructors of List<T>

    Incidentally, the reason the compiler error message says “An explicit conversion exists (are you missing a cast?)” is because if you have an object that really is a Foo that happens to be referenced as a List<Bar> then you can cast it. e.g.

    Foo myFoo = new Foo();
    List<Bar> myList = myFoo;
    Foo sameFoo = (Foo)myList;
    

    All three references (myFoo, myList, and sameFoo) all reference the exact same Foo instance and casting will work. However, if this is the scenario:

    List<Bar> actualList = new List<Bar>();
    Foo listedFoo = (Foo)actualList;
    

    Then the cast will fail because actualList isn’t a Foo or derivative of Foo.

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

Sidebar

Related Questions

I have a custom list which inherits from Generic.List<T> like this: public class TransferFileList<T>
Example: I have an class that inherits from UIImageView. An object creates an instance
I have BaseClass List Public Class Package <XmlElement(OBJECT)> Public List As List(Of baseobj) Public
I have this class: public class CampaignMaps : List<CampaignMap> { }; The CampaignMap object
I have object A which in turn has a property of type Object B
I have a main page which uses a ViewModel I have created: public class
I have a class that represents some business object, such as this: Public Class
I have a class which inherits from BindingList to apply sorting to a bindinglist.
I have object A which contains multiple instances of object B, which in turn
I have an object that contains a list as on of its fields, 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.