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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T17:56:03+00:00 2026-06-18T17:56:03+00:00

Possible Duplicate: Do interfaces derive from System.Object? C# spec says yes, Eric says no,

  • 0

Possible Duplicate:
Do interfaces derive from System.Object? C# spec says yes, Eric says no, reality says no

It is said all objects in .net inherit from System.Object.
Is that true?

I try to find what object the Ilist interface inherited from on the MSDN, but there’s no mention about its inheritance.

Can anyone tell me something?

  • 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-18T17:56:05+00:00Added an answer on June 18, 2026 at 5:56 pm

    Interfaces themselves aren’t objects in a class hierarchy. They are “types” in the sense that they represent an object. But they aren’t concrete classes in and of themselves.

    For example, you can’t instantiate an IList<int>. This wouldn’t compile:

    var list = new IList<int>();
    

    However, you can create a List<int>, which does inherit from System.Object:

    var list = new List<int>();
    

    This instance of list can be viewed as lots of different interfaces. For example:

    var listVariantA = list as IList<int>();
    var listVariantB = list as IEnumerable<int>();
    

    And so on. This is because its concrete type, List<int>, implements multiple interfaces. It doesn’t inherit from them, as they themselves are not concrete types.

    It seems like where you’re getting lost is in the different between inheritance and interfaces. Some might say that interfaces are “.NET’s answer to multiple inheritance” which can be a fair statement. But there’s a fundamental difference between the two concepts. Think of inheritance as a hierarchy of what an object is:

    Vehicle
      Car
        Honda Accord
        Toyota Camry
      Truck
        Ford F150
    

    And so on. Interfaces don’t fit into this hierarchy. Think of an interface, instead, as a contract which an object meets. For example, all Vehicle object might implement the IDrivable interface. Some of them might implement the IFlyable interface. Some still might implement both (flying cars).

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

Sidebar

Related Questions

Possible Duplicate: Why does (does it really?) List implement all these interfaces, not just
Possible Duplicate: Coding to interfaces? I am reading the Collections tutorial from Java and
Possible Duplicate: Interfaces: Why can't I seem to grasp them? I have seen many
Possible Duplicate: Ternary Expression with Interfaces as a Base Class Classes: interface ISms {
Possible Duplicate: Creating an “object” of an interface I am new to Java. Based
Possible Duplicate: Java Interfaces? What is the use of interface in java? Is interface
Possible Duplicate: What is the use of marker interfaces in Java? What are marker
Possible Duplicate: Is it safe for structs to implement interfaces? Take this code: interface
Possible Duplicate: Interfaces with static fields in java for sharing ‘constants’ We have constants
Possible Duplicate: Protected in Interfaces The following code snippet shows that an interface in

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.