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

  • Home
  • SEARCH
  • 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 7086483
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T07:33:18+00:00 2026-05-28T07:33:18+00:00

I know that String extension methods return a String and do not actually affect

  • 0

I know that String extension methods return a String and do not actually affect the variable calling the extension method (so it’s immutable) – but how do I tell whether other extension methods do or not? For example, I’m working with a List<NewsItem> – and I need to order this list by date descending, so I’ve written this code:

newsItems.OrderByDescending(o => o.Date);

Does this affect the newsItems list or just return the IOrderedEnumerable??

In other words, should the above code actually read:

newsItems = newsItems.OrderByDescending(o => o.Date).ToList();

??

Thanks,

Dan

  • 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-28T07:33:19+00:00Added an answer on May 28, 2026 at 7:33 am

    OrderByDescending is an extension method on IEnumerable<T>, which itself provides read-only access. Of course, the extension method could cast to List<T>, but basically none of the LINQ to Objects extension methods affect their target (assuming the targets aren’t affected by iteration, of course).

    LINQ is designed in a functional style – methods return a new view on the data rather than changing the target they’re called on.

    EDIT: As noted by drew, the [Pure] attribute can be used as an indication of this, and some tools will pick up on it. However:

    • You still need to trust that the [Pure] attribute has been correctly applied
    • It’s not always easy to tell whether or not there is a [Pure] attribute (it doesn’t show up in the docs I linked to, for example)
    • You should probably be reading the documentation for anything you call anyway, if you aren’t confident in what it does
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know that you cannot return anonymous types from methods but I am wondering
I know that using Dim currUser As String = Request.ServerVariables(LOGON_USER) returns the Domain\Username, but
I have a string input that i do not know whether or not is
Possible Duplicate: Static extension methods So I know that Extension methods are for object
I've added an extension method that is a shortcut to string.Format: public static string
We know that string is a reference type , so we have string s=God
I know that I can pass a string as the second parameter to the
I know that for an integer, you can use: int value; I tried: string
A recent question about string literals in .NET caught my eye. I know that
I know there are libs in other languages that can take a string that

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.