Tagged Questions

An extension method is a language feature of Visual Basic.NET and c#. Extension methods enable you to "add" methods to existing types without creating a new derived type, recompiling, or otherwise modifying the original type.

learn more… | top users | synonyms

435
votes
147answers
32k views

What are your favorite extension methods for C#? (codeplex.com/extensionoverflow)

Caution! This ancient question is from the early days of Stack Overflow, and while we recognize its historical significance and have thus chosen to keep it around, please realize that if a ...
75
votes
5answers
19k views

Razor HtmlHelper Extensions Not Found

Dunno if this was happening in the PR or Beta, but if I create an extension method on HtmlHelper, it is not recognized in a Razor powered page: namespace SomeNamespace.Extensions { public static ...
72
votes
12answers
14k views

Can I add extension methods to an existing static class?

I'm a fan of extension methods in C#, but haven't had any success adding an extension method to a static class, such as Console. For example, if I want to add an extension to Console, called ...
65
votes
6answers
16k views

C#: Extension properties

I am pretty sure it doesn't, but... Do extention properties exist? Will they exist? Anyone heard anything? I would love it if they did... I mean, are they not just technically a get and a set method? ...
57
votes
40answers
4k views

What is the best or most interesting use of Extension Methods you've seen? [closed]

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 ...
55
votes
3answers
8k 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 ...
52
votes
40answers
2k views

What's your favorite LINQ to Objects operator which is not built-in?

With extension methods, we can write handy LINQ operators which solve generic problems. I want to hear which methods or overloads you are missing in the System.Linq namespace and how you implemented ...
50
votes
18answers
12k 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 ...
44
votes
8answers
2k 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: ...
43
votes
7answers
16k views

Distinct() with lambda?

Right, so I have an enumerable and wish to get distinct values from it. Using System.Linq, there's of course an extension method called Distinct. In the simple case, it can be used with no ...
41
votes
31answers
4k 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 ...
36
votes
7answers
847 views

Why doesn't this generic extension method compile?

The code is a little weird, so bear with me (keep in mind this scenario did come up in production code). Say I've got this interface structure: public interface IBase { } public interface IChild : ...
35
votes
11answers
24k 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 = ...
35
votes
2answers
3k views

Which method performs better: .Any() vs .Count() > 0?

in the System.Linq namespace, we can now extend our IEnumerable's to have theAny() and Count() extension methods. I was told recently that if i want to check that a collection contains 1 or more ...
34
votes
15answers
8k 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 = ...
30
votes
3answers
2k views

Code equivalent to the 'let' keyword in chained LINQ extension method calls

Using the C# compilers query comprehension features, you can write code like: var names = new string[] { "Dog", "Cat", "Giraffe", "Monkey", "Tortoise" }; var result = from animalName in names ...
27
votes
2answers
2k views

Ambiguous call between two C# extension generic methods one where T:class and other where T:struct

Consider two extension methods: public static T MyExtension<T>(this T o) where T:class public static T MyExtension<T>(this T o) where T:struct And a class: class MyClass() { ... } ...
25
votes
7answers
1k views

Is it possible to refactor this extension method?

I have the following extension method: public static void ThrowIfArgumentIsNull<T>(this T value, string argument) where T : class { if (value == null) { throw new ...
23
votes
5answers
5k views

How do I use Moq to mock an extension method?

I am writing a test that depends on the results of an extension method but I don't want a future failure of that extension method to ever break this test. Mocking that result seemed the obvious choice ...
23
votes
6answers
8k views

Linq Extension methods vs Linq syntax

I'm trying to get a handle on if there's a good time to use standard linq keywords or linq extension methods with lambda expressions. They seems to do the same thing, just are written differently. ...
23
votes
15answers
10k views

Error when using extension methods in C#

I came across an issue that makes me think there is bug in the 3.0 framework. When I try to use extension methods I get the following error: Missing compiler required member ...
22
votes
5answers
6k views

C# Reflection to Identify Extension Methods

In C# is there a technique using reflection to determine if a method has been added to a class as an extension method? Given an extension method such as the one shown below is it possible to ...
22
votes
3answers
2k views

Will the dynamic keyword in C#4 support extension methods?

I'm listening to a talk about C#4's dynamic keyword and I'm wondering... Will this feature be orthogonal to other .NET features, for example will it support extension methods? public static class ...
21
votes
5answers
1k views

How do I ensure a sequence has a certain length?

I want to check that an IEnumerable contains exactly one element. This snippet does work: bool hasOneElement = seq.Count() == 1 However it's not very efficient, as Count() will enumerate the entire ...
20
votes
5answers
662 views

Why is the 'this' keyword required to call an extension method from within the extended class

I have created an extension method for an ASP.NET MVC ViewPage, e.g: public static class ViewExtensions { public static string Method<T>(this ViewPage<T> page) where T : class { ...
20
votes
5answers
900 views

Complexity of Java 7's current Lambda proposal? (August 2010)

Some people say that every programming language has its "complexity budget" which it can use to accomplish its purpose. But if the complexity budget is depleted, every minor change becomes ...
20
votes
2answers
2k views

C#: Repository Methods vs. Extending IQueryable

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 contact whose ...
20
votes
4answers
5k views

Convert string[] to int[] in one string of code using LINQ

I have an array of integers in string form: var arr = new string[] { "1", "2", "3", "4" }; I need to an array of 'real' integers to push it further: void Foo(int[] arr) { .. } I tried to cast ...
20
votes
8answers
859 views

What are Extension Methods?

What are extension methods in .NET? EDIT: I have posted a follow up question at Usage of Extension Methods
19
votes
2answers
280 views

Extension method that extends T - bad practice?

I've read that it is usually bad practice to extend System.Object, which I do agree with. I am curious, however, if the following would be considered a useful extension method, or is it still bad ...
19
votes
4answers
688 views

Why does this extension method throw a NullReferenceException in VB.NET?

From previous experience I had been under the impression that it's perfectly legal (though perhaps not advisable) to call extension methods on a null instance. So in C#, this code compiles and runs: ...
18
votes
6answers
2k views

Evil use of Maybe monad and extension methods in C#?

I've been thinking about the null propagation problem in .NET, which often leads to ugly, repeated code like this: Attempt #1 usual code: string activeControlName = null; var activeForm = ...
18
votes
5answers
3k views

Static extension methods

Is there any way I can add a static extension method to a class. specifically I want to overload Boolean.Parse to allow an int argument.
17
votes
3answers
2k views

Is there any way in C# to override a class method with an extension method?

There have been occasions where I would want to override a method in a class with an extension method. Is there any way to do that in C#? For example: public static class StringExtension { ...
16
votes
6answers
1k views

In C#, what happens when you call an extension method on a null object?

Does the method get called with a null value or does it give a null reference exception? MyObject myObject = null; myObject.MyExtensionMethod(); // <-- is this a null reference exception? If ...
16
votes
5answers
4k views

Raising C# events with an extension method - is it bad?

We're all familiar with the horror that is C# event declaration. To ensure thread-safety, the standard is to write something like this: public event EventHandler SomethingHappened; protected virtual ...
15
votes
4answers
2k views

Mocking Extension Methods with Moq

I have a preexisting Interface... public interface ISomeInterface { void SomeMethod(); } and I've extended this intreface using a mixin... public static class SomeInterfaceExtensions { ...
14
votes
3answers
199 views

Extension methods overridden by class gives no warning

I had a discussion in another thread, and found out that class methods takes precedence over extension methods with the same name and parameters. This is good as extension methods won't hijack ...
14
votes
5answers
2k views

Can C# extension methods access private variables?

Is it possible to access an object's private variables using an extension method?
14
votes
2answers
2k views

Where is the “Fold” LINQ Extension Method?

I found in MSDN's Linq samples a neat method called Fold() that I want to use. Their example: double[] doubles = { 1.7, 2.3, 1.9, 4.1, 2.9 }; double product = doubles.Fold((runningProduct, ...
14
votes
12answers
2k 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 ...
14
votes
5answers
2k views

ArgumentNullException or NullReferenceException from extension method?

What would you consider to be the best exception type to throw when an extension method is called on a null instance (where the extension method does not allow it)? Since extension methods are nothing ...
13
votes
6answers
1k 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!
13
votes
2answers
2k views

Is it appropriate to extend Control to provide consistently safe Invoke/BeginInvoke functionality?

In the course of my maintenance for an older application that badly violated the cross-thread update rules in winforms, I created the following extension method as a way to quickly fix illegal calls ...
13
votes
7answers
1k 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 ...
13
votes
5answers
4k views

Is it possible to implement mixins in C#?

I've heard that it's possible with extension methods, but I can't quite figure it out myself. I'd like to see a specific example if possible. Thanks!
13
votes
5answers
499 views

Organizing Extension Methods

How do you organize your Extension Methods? Say if I had extensions for the object class and string class I'm tempted to separate these extension methods into classes IE: public class ...
12
votes
2answers
197 views

The “Enum as immutable rich-object”: is this an anti-pattern?

I've often seen and used enums with attached attributes to do some basic things such as providing a display name or description: public enum Movement { [DisplayName("Turned Right")] ...
12
votes
2answers
241 views

Writing an extension method to help with querying many-to-many relationships

I am trying to write an extension method in order to refactor a linq many-to-many query I'm writing. I am trying to retrieve a collection of Post(s) which have been tagged with any of the Tag(s) in a ...
12
votes
3answers
372 views

Problem with LINQ - necessary to add reference to unneeded library

I have a following issue. I have a solution that contains about 40 projects. There is a project A that references project B that references project C. There isn't any code in project A that uses ...

1 2 3 4 5 22