12
votes
6answers
379 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 …
0
votes
2answers
26 views
How to create a flexible extension method for generic lists?
Hello,
I have 2 objects Project and License. They both inherit from the object Entity (abstract class).
Now I have an extension method "GetNewId" that contains logic to get the next id in a list of …
0
votes
0answers
34 views
HTML Extension method being called twice - ASP.NET MVC 2
Using ASP.NET MVC 2 (Preview 2 I think, the one that works with VS 2010)
I have the following html extension captcha method that (Taken from Steve Sanderson's Pro ASP.NET MVC book)
public static …
0
votes
3answers
52 views
How to create extension methods for Types
I am writing an extension method for parsing JSON string for any given type. I wanted to use the method on types instead of instances like many examples we already know, but I somewhat feel it is not …
8
votes
4answers
147 views
C# - Sorting using Extension Method
I want to sort a list of person say
List<Person> persons=new List<Person>();
persons.Add(new Person("Jon","Bernald",45000.89));
persons.Add(new Person("Mark","Drake",346.89));
…
1
vote
4answers
87 views
C# -Termination in Aggregate( )
From the following simulation
int[] amountWithdrawal = { 10, 20, 30, 140, 50, 70 };
amountWithdrawal.Aggregate(100, (balance, withdrawal) =>
{
Console.WriteLine("balance :{0},Withdrawal:{1}", …
0
votes
5answers
87 views
C# - Running Total using Aggregate()
This question was asked at interview.I need to have running total (only using Aggregate() )
from array
(i.e)
int[] array={10,20,30};
Expected output
10
30
60
when i use Aggregate (I applied …
2
votes
2answers
57 views
Method signature for IList<T>.Split() extension method
I'd like to be able to write the following code:
// contains 500 entries
IList<string> longListOfStrings = ...
// shorterListsOfStrings is now an array of 5 IList<string>,
// with each …
0
votes
4answers
83 views
C# Extension Method to return random alphabet
How to develop an extension method that may return random character(single character) from alphabet (a,b,....z).
public static char RandomLetter(this char randomchar)
{
}
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.
…
0
votes
2answers
92 views
C# non-vowel words
I want an extension method that needs to return non-vowel words.I designed
public static IEnumerable<T> NonVowelWords<T>(this IEnumerable<T> word)
{
return word.Any(w …
1
vote
1answer
25 views
Extension Methods in Linq to entity-expressions
Hi,
If I create an extension method for my entity objects and try to use it in a LINQ-expression I get an error. Is this a limitation and something I cant do or am I missing something?
regards
…
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 …
1
vote
3answers
90 views
[C#] Interesting “params of ref” feature, any workarounds?
I wonder if there's any way something like this would be possible for value types...
public static class ExtensionMethods {
public static void SetTo(this Boolean source, params Boolean[] bools) {
…
2
votes
6answers
136 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 confrontational. I am asking a …
