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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T13:56:04+00:00 2026-06-03T13:56:04+00:00

I was wondering , why does IEnumerable<T> has ONLY the out and not the

  • 0

I was wondering , why does IEnumerable<T> has ONLY the out and not the in contravariant flag ?

public interface IEnumerable<out T>

I can understand the out by this example :

IEnumerable<string> strings = new List<string>(){"a","b","c"};
IEnumerable<object> objects = strings;

object is bigger than string , so the compiler afraid that well do something like:

 objects = objects.First().Select(x=>5);// ( we cant insert int to string...)

fine and understood.

but what about if i want to use the IEnumerable as insertion?

something like :

IEnumerable<object> objects = ...;
IEnumerable<string> strings = objects

so i can also INSERT into objects …

but the problem is that there is no IEnumerable<in T> …

am I missing something here?

  • 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-03T13:56:07+00:00Added an answer on June 3, 2026 at 1:56 pm

    You can’t insert into IEnumerable. There is, unfortunately, no “IInsertable”.

    There is no interface to tell that you can only add items to a collection. This would be an in generic type. Because you can get the items on every collection interface, it is not possible to have in generic arguments.

    Edit

    The interface IEnumerable<T> has only getters, so you can’t insert any elements to the collection using that interface. Because of that, out is allowed in the declaration of IEnumerable<out T>. It tells the compiler, that values of type T are only going in one direction, the are “coming out”. This makes it compatible in one direction. You can use IEnumerable<string>as an IEnumerable<object>, because you are only reading from it. You can read a string as an object. But you couldn’t write to it, you couldn’t pass an object as a string. It might be an integer or any other type.

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

Sidebar

Related Questions

I was wondering how does Nike website make the change you can see when
I was wondering how exactly does TCP implement in-order delivery. lets say this is
I've seen the following often lately and I'm wondering what it does? I can't
Just wondering does the 4GB limit apply to this edition or is it 'fully
I am wondering does VS 2010 have something that I can use to compare
Simple and short. I was wondering does popular Channel9 have some application interface so
Let's say I have a long established repository like this: interface IDonutRepository { public
Hello: I have been experimenting with WPF this afternoon, Im wondering does anyone know
Why does T[] stand for array and not IEnumerable<T> in C#? I know that
I was wondering why I can not have generic property in non-generic class 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.