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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T23:31:35+00:00 2026-05-12T23:31:35+00:00

Possible Duplicate: What Advantages of Extension Methods have you found? All right, first of

  • 0

Possible Duplicate:
What Advantages of Extension Methods have you found?

All right, first of all, I realize this sounds controversial, but I don’t mean to be confrontational. I am asking a serious question out of genuine curiosity (or maybe puzzlement is a better word).

Why were extension methods ever introduced to .NET? What benefit do they provide, aside from making things look nice (and by “nice” I mean “deceptively like instance methods”)?

To me, any code that uses an extension method like this:

Thing initial = GetThing();
Thing manipulated = initial.SomeExtensionMethod();

is misleading, because it implies that SomeExtensionMethod is an instance member of Thing, which misleads developers into believing (at least as a gut feeling… you may deny it but I’ve definitely observed this) that (1) SomeExtensionMethod is probably implemented efficiently, and (2) since SomeExtensionMethod actually looks like it’s part of the Thing class, surely it will remain valid if Thing is revised at some point in the future (as long as the author of Thing knows what he/she’s doing).

But the fact is that extension methods don’t have access to protected members or any of the internal workings of the class they’re extending, so they’re just as prone to breakage as any other static methods.

We all know that the above could easily be:

Thing initial = GetThing();
Thing manipulated = SomeNonExtensionMethod(initial);

To me, this seems a lot more, for lack of a better word, honest.

What am I missing? Why do extension methods exist?

  • 1 1 Answer
  • 1 View
  • 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-12T23:31:36+00:00Added an answer on May 12, 2026 at 11:31 pm

    Extension methods were needed to make Linq work in the clean way that it does, with method chaining. If you have to use the “long” form, it causes the function calls and the parameters to become separated from each other, making the code very hard to read. Compare:

    IEnumerable<int> r = list.Where(x => x > 10).Take(5)
    

    versus

    // What does the 5 do here?
    IEnumerable<int> r = Enumerable.Take(Enumerable.Where(list, x => x > 10), 5);
    

    Like anything, they can be abused, but extension methods are really useful when used properly.

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

Sidebar

Related Questions

Possible Duplicate: Javascript - this Vs. prototype Advantages of using prototype, vs defining methods
Possible Duplicate: Can main function call itself in C++? I found this problem very
Possible Duplicate: Advantages of using prototype, vs defining methods straight in the constructor? What
Possible Duplicate: What are the advantages of delegates? I have created a sample application.
Possible Duplicate: Advantages of using prototype, vs defining methods straight in the constructor? I'm
Possible Duplicate: Use of ‘prototype’ vs. ‘this’ in Javascript? Advantages of using prototype, vs
Possible Duplicate: Initializing in constructors, best practice? Advantages of using initializer list? I have
Possible Duplicate: Why use getters and setters? Is there any advantage to making methods
Possible Duplicate: How can I understand nested ?: operators in PHP? Why does this:
Possible Duplicate: Advantages of SQL Server 2008 over SQL Server 2005? What are 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.