12
votes
6answers
378 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
89 views
How to add custom columns to a table that LINQ to SQL can translate to SQL
I have a table that contains procedure codes among other data (let's call it "MyData"). I have another table that contains valid procedure codes, their descriptions, and the dates on which those codes …
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 …
4
votes
10answers
599 views
Extension interface patterns
The new extensions in .Net 3.5 allow functionality to be split out from interfaces.
For instance in .Net 2.0
public interface IHaveChildren {
string ParentType { get; }
int ParentId { get; }
…
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 …
3
votes
3answers
305 views
VB.NET Extension Method in View using ASP.NET MVC
I ran into a strange issue over the weekend while I was working on an asp.net mvc project in vb.net. I created an extension method to convert an integer to the corresponding month it is associated …
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 …
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 …
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 …
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)
{
}
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));
…
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 …
0
votes
1answer
48 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 always wrap labels in …
6
votes
3answers
272 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 …
