122
votes
82answers
9k views
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
Let's make a list of answers where you post your excellent and favorite extension methods.
The requirement is that the full code must be posted and a example and an explanation on how to use it.
…
35
votes
33answers
2k views
What is the best or most interesting use of Extension Methods you’ve seen?
I'm starting to really love extension methods... I was wondering if anyone her has stumbled upon one that really blew their mind, or just found clever.
An example I wrote today:
Edited due to other …
25
votes
6answers
872 views
Evil use of extension methods?
Evil or not evil?
public static void Raise(this EventHandler handler, object sender, EventArgs args)
{
if (handler != null)
{
handler(sender, args);
}
}
// Usage:
…
19
votes
18answers
3k views
Why is there not a ForEach extension method on the IEnumerable interface?
Inspired by another question asking about the missing Zip function:
Why is there no ForEach extension method in the Enumerable class? Or anywhere? The only class that gets a ForEach method is …
13
votes
24answers
1k views
What Advantages of Extension Methods have you found?
A "non-believer" of C# was asking me what the purpose to extension methods was. I explained that you could then add new methods to objects that were already defined, especially when you don't …
13
votes
2answers
2k views
Operator Overloading with C# Extension Methods
I'm attempting to use extension methods to add an operater overload to the C# StringBuilder class. Specifically, given StringBuilder sb, I'd like sb += "text" to become equivalent to …
11
votes
1answer
235 views
C#: Repository Methods vs. Extending IQueryable
Hello,
I have repositories (e.g. ContactRepository, UserRepository and so forth) which encapsulate data access to the domain model.
When I was looking at searching for data, e.g.
finding a …
10
votes
9answers
3k views
C# Convert string to nullable type (int, double, etc…)
I am attempting to do some data conversion. Unfortunately, much of the data is in strings, where it should be int's or double, etc...
So what I've got is something like:
double? amount = …
10
votes
6answers
262 views
What idiom (if any) do you prefer for naming the “this” parameter to extension methods in C#, and why?
The first parameter to a C# extension method is the instance that the extension method was called on. I have adopted an idiom, without seeing it elsewhere, of calling that variable "self". I would not …
10
votes
12answers
748 views
What fluent interfaces have you made or seen in C# that were very valuable? What was so great about them?
"Fluent interfaces" is a fairly hot topic these days. C# 3.0 has some nice features (particularly extension methods) that help you make them.
FYI, a fluent API means that each method call returns …
10
votes
8answers
251 views
Is this a good use of an ExtensionMethod?
I just wrote an if statement in the lines of
if (value == value1 || value == value2 || value == value3 || value == value4)
//do something
and got annoyed that I always have to repeat the 'value …
10
votes
7answers
435 views
What are Extension Methods?
What are extension methods in .NET?
EDIT:
I have posted a follow up question at Usage of Extension Methods
10
votes
7answers
670 views
C# Extension Methods - How far is too far?
Rails introduced some core extensions to Ruby like 3.days.from_now which returns, as you'd expect a date three days in the future. With extension methods in C# we can now do something similar:
static …
9
votes
6answers
326 views
Extension methods versus inheritance
Are there rules of thumb that help determine which to use in what case? Should I prefer one over the other most times?
Thanks!
9
votes
9answers
1k views
Can I “multiply” a string (in C#)?
Suppose I have a string, for example,
string snip = "</li></ul>";
I want to basically write it multiple times, depending on some integer value.
string snip = …
