0
votes
1answer
28 views
Object To DataView or DataSet or DataTable and back to object
We have a mish-mash app with a legacy module that still uses DataSets, DataViews and DataTables however we have most of the the databases ORMed except the DB for this Module. I was wondering if …
2
votes
5answers
75 views
Collection Randomization using Extension Method [closed]
Possible Duplicate:
C#: Is using Random and OrderBy a good shuffle algorithm?
I want to create an extension method which should shuffle the items in the collection.
Can i improve the …
16
votes
7answers
584 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
30 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
3answers
53 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
63 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
88 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
91 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
84 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
150 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
95 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
27 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
…
1
vote
3answers
92 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
2answers
58 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 must be able to …
2
votes
6answers
138 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 …
