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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:13:42+00:00 2026-05-26T19:13:42+00:00

1) I read some (general) code snippet and saw some places that used IList<T>

  • 0

1) I read some (general) code snippet and saw some places that used IList<T> and some used IEnumerable. What is the pros to use the first over the latter?

2) is and as in c#.
I understand is does type check and as does casting.
But what is exactly casting? forcing data to some sized object? when is and as differ?

  • 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-26T19:13:43+00:00Added an answer on May 26, 2026 at 7:13 pm

    A IList[<T>] represents something that:

    • can be iterated
    • is of finite, known size
    • is repeatable
    • can be accessed randomly by index
    • can (optionally, checkable) be edited: reassign values, add, remove, etc

    An IEnumerable, on the other hand, can only be iterated. Not all things that can be iterated are lists. For example:

    static IEnumerable<int> Get() {
        Random rand = new Random();
        while(true) yield return rand.Next();
    }
    

    that ^^^ is an infinite sequence. It has no length, cannot be mutated, cannot be accessed by index… however, it can be iterated:

    foreach(int i in Get().Take(200)) {
        Console.WriteLine(i);
    }
    

    is performs a type check that returns true/false… i.e. is obj an IList? yes or no.

    as performs a “try to do this” type-check; it returns null if it fails, or a typed reference (etc) if it is successful. Basically, it is an efficiency thing:

    if(obj is IList) {
        var list = (IList) obj;
        ...
    }
    

    is less efficient than:

    var list = obj as IList;
    if(list != null) {
        ...
    }
    

    they also behave differently if obj is null; is throws an exception; as returns null.

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

Sidebar

Related Questions

I am looking over some code that has heavy use of Java's instanceof operator.
Okay, so I'm using perl to read in a file that contains some general
I'm learning SharePoint development. I read some general how to build a web part,
I read some properties from an xml file, amongst which is a string that
I read some source code of ZenTest but didn't find where it is implemented.
I read some articles about Comet tech. All of them mentioned that the long-life
I read some of the discussion in this question and thought to myself that
I read some microsoft articles.They explained that WCF uses DataContractSerializer for serialization.But the articles
I was doing some unit testing on code that could throw a number of
I've been looking to read some ruby code(specifically Rails) but I don't want to

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.