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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T00:18:34+00:00 2026-05-13T00:18:34+00:00

Possible Duplicate: Is it better to call ToList() or ToArray() in LINQ queries? I

  • 0

Possible Duplicate:
Is it better to call ToList() or ToArray() in LINQ queries?

I have code like this:

void Foobar(string[] arr, Dictionary<string, string[]>)
{
   var t = arr.Intersect(dic.Keys).ToList(); // .or ToArray() ?
   foreach(var item in t)
   {
      ..
   }

   var j = t.Count; // also I need this
}

which method is preferred?

I could go without any but I need to know the size and I don’t want to call Enumerable.Count<T>() – it seems do do more actions then Array<T>.Size or List<T>.Count. Am I right?

  • 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-13T00:18:34+00:00Added an answer on May 13, 2026 at 12:18 am

    Actually, in the current MS implementation of Count(IEnumerable) there’s a shortcut looking if the IEnumerable is an ICollection and calls Count on it. So the performance should be comparable for counting elements.

    ToList and ToArray are a bit the same. If the IEnumerable is a ICollection, then the CopyTo method is called instead, which is a bit faster.

    So, choose what makes your code the most readable, and benchmark for YOUR use case to have a definite answer.

    Update:
    I did a naive benchmark.

    Starting with an Array: var items = Enumerable.Range(1,1000).ToArray();

    • calling ToList() : 25ms / 10000
    • calling ToArray() : 23 ms / 10000

    Starting with an IEnumerable: var items = Enumerable.Range(1,1000);

    • calling ToList() : 168ms / 10000
    • calling ToArray() : 171 ms / 10000

    So basically you get comparable performance.

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

Sidebar

Related Questions

Possible Duplicate: A better Java JSON library? Hi, I have a json file like
Possible Duplicate: C# - Is there a better alternative than this to 'switch on
Possible Duplicate: Learning jQuery and Getting Better at Javascript I have found jQuery very
Possible Duplicate: How do I calculate someone's age in C#? Maybe this could be
Possible Duplicate: How does the Google Did you mean? Algorithm work? Suppose you have
Possible Duplicate: In PHP, can you instantiate an object and call a method on
Possible Duplicate: Should I Dispose() DataSet and DataTable? OP comment: I would like to
Possible Duplicate: How can I declare a thousand separator in read.csv? I actually have
Possible Duplicate: Is there a better way than parsing /proc/self/maps to figure out memory
Possible Duplicate: Destructors for C++ Interface-like classes Consider a simple example of a C++

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.