0
votes
5answers
77 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 …
3
votes
4answers
104 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
2answers
34 views
When do I have to specify type <T> for IEnumerable extension methods?
I'm a bit confused about the use of all the IEnumerable<T> extension methods, intellisense is always asking for <T>, but I don't think it's necessary to specify <T&g …
0
votes
3answers
82 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:
…
0
votes
2answers
76 views
Multiple from clauses in LINQ
How can this LINQ query expression be re-expressed with extension method calls?
public static List<Tuple<int, int>> Concat()
{
return (from x in Enumerable.Range(1 …
1
vote
1answer
60 views
Is it possible to write extension methods for Console?
While looking at this question and it's answers I thought that it would be a good idea to write an extension method for System.Console that contained the desired functionality.
Ho …
1
vote
2answers
68 views
What is wrong with my implementation of: c# extension methods
Hi,
the source is throwing the error:
'nn.asdf' does not contain a definition for 'extension_testmethod'
and i really don't unterstand why...
using System.Linq;
using System. …
0
votes
0answers
11 views
ASP.NET MVC 2 Preview 2 - Extend LabelExtensions.LabelFor
I'm wondering if anyone has attempted to write an extension helper to the LabelExtensions.LabelFor HtmlHelper in MVC2? This would be useful for me in that my app requires that I al …
0
votes
2answers
94 views
C# Count() Extension Method Performance
If the LINQ Count() extension method is invoked on an IEnumerable<T> that has a Count property (e.g. List<T>), does the Count() method look for that property and return …
1
vote
4answers
119 views
Extending Enum in C#
Hi,
I was wondering whether or not I can extend the Enum type in C# to implement my custom Enum.GetValues(type) and call it like Enum.GetMyCustomValues(type)
I am trying to imple …
2
votes
8answers
166 views
What should I name this Extension method ?
I have written an extension method for string manipulation. I'm confused what should I name it - since this will become part of the base library front-end developers in the team wi …
109
votes
72answers
9k views
Post your extension goodies 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 …
2
votes
7answers
185 views
C++ Class Extension
Hi
Is there a way to add new methods to a class, without modifying original class definition (i.e. compiled .lib containing class and corresponding .h file) like C#'s class extens …
0
votes
3answers
62 views
Extension ‘Class’: Good use of extension methods and increase code readability… or bad smell?
So I've been dealing with several APIs recently provided by different software vendors for their products. Sometimes things are lacking, sometimes I just want to make the code more …
1
vote
5answers
77 views
Good way to concatenate string representations of objects?
Ok,
We have a lot of where clauses in our code. We have just as many ways to generate a string to represent the in condition. I am trying to come up with a clean way as follows:
…
