2
votes
2answers
39 views
which dll contains generics extension methods?
I'm trying to dynamically compile source code using the CodeDom.Compiler stuff, which means I need to reference the basic assemblies manually. The source code that I am compiling …
2
votes
6answers
128 views
What is so great about extension methods? [closed]
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 confrontation …
1
vote
5answers
105 views
How do I write a generic method that takes different types as parameters?
I have the following extension method to add the elements in one collection to another collection:
public static void AddRange<T>(this ICollection<T> collection, IEnum …
4
votes
5answers
100 views
Is it possible to constrain a generic parameter to be a subtype of the current object?
Here's an interesting problem that I have just come across. It is possible to do what I want using extension methods, but does not seem possible to do with members of the class its …
1
vote
2answers
62 views
IEnumerable Extension Methods on an Enum
I have an enum(below) that I want to be able to use a LINQ extension method on.
enum Suit{
Hearts = 0,
Diamonds = 1,
Clubs = 2,
Spades = 3
}
Enum.GetValues(...) …
2
votes
2answers
49 views
Override (or shadow) a method with extension method?
Is it possible to override or shadow (new in C#) instance methods with extension methods?
118
votes
77answers
9k views
Post your extension methods for C# .Net (codeplex.com/extensionoverflow)
Let's make a list of answers where you post your excellent and favorite extension code.
The requirement is that the full code must be posted and a example and an explanation on h …
1
vote
3answers
100 views
A different take on FirstOrDefault
The IEnumerable extension method FirstOrDefault didn't exactly do as I wanted so I created FirstOrValue. Is this a good way to go about this or is there a better way?
public stati …
1
vote
3answers
67 views
When should I use HtmlHelper Extension Methods?
I am increasingly finding situations where my ASP.NET MVC view requires some logic to perform layout. These routines have no place being in either my model or my controller. I have …
0
votes
1answer
33 views
Extension methods in Mono 2.4 and RhinoMocks 3.5
I am playing around with MonoDevelop 2.0 and Mono 2.4 in Ubuntu.
I have run into problems with extension methods not being available (eg mockView.Stub(...)) in RhinoMocks 3.5 for …
3
votes
4answers
116 views
Adding an extension method to the string class - C#
Not sure what I'm doing wrong here. The extension method is not recognized.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Tex …
0
votes
5answers
91 views
Extending the Enumerable class in c#?
Hi,
I have situation to extend the Enumerable class in c# to add the new Range method that accepts long parameters. I cannot define the method like this
public static IEnumerabl …
34
votes
32answers
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:
…
0
votes
3answers
95 views
F# type extensions in C# project: System.Runtime.CompilerServices.Extension missed?
Hi ;)!
I'm diving into F# and it's very fascinating. I'm trying to marry Optional Types and C# like here. Pretty interesting thing... however I miss something important I guess:
…
-1
votes
2answers
46 views
Extending classes and instances
This question has two parts.
In the Ruby Programming Language book, there is an example (section 8.1.1) of extending a string object and class with a module.
First question. Why …
