1
vote
1answer
60 views
Decorator with generic base class
A co-worker of mine asked me last week if it were possible in C# to extend a generic class from its generic parameter. He said it was possible in C++.
What he wanted makes actuall …
1
vote
4answers
122 views
How to return a generic list?
I don't even think I have the question correct as I am just starting with generics and my knowledge isn't very great.
Say I have the following method:
public class Wrapper
{
…
1
vote
4answers
64 views
Defining an extension method on IEnumerable<T> where T is specific kind of type?
I want a method to only work on types which implement the /, +, -, * operators. Is there any "clean" way to do this?
1
vote
7answers
165 views
C# generics problem - newing up the generic type with parameters in the constructor
I am trying to create a generic class which new's up an instance of the generic type. As follows:
public class HomepageCarousel<T> : List<T>
where T: IHomepageCaro …
2
votes
2answers
99 views
Abstract Generic class
Hi,
I have the following class :
public abstract class Step {
public abstract <S,T> S makeAStep(S currentResult, T element);
}
and I'm trying to Implement it so it wi …
5
votes
2answers
137 views
Why are TGeneric<Base> and TGeneric<Descendant> incompatible types?
Hi,
I have started using of generics in Delphi 2010 but I have a problem when compiling this piece of code:
TThreadBase = class( TThread )
...
end;
TThreadBaseList<T: TThread …
0
votes
3answers
53 views
Dependency Injection and Generic Collections
I'm going round in circles at the moment trying to get the pattern right for using Dependency Injection with a number of IEnumerables.
I have three types of object that I want to …
1
vote
6answers
97 views
Get the symmetric difference from generic lists
I have 2 separate List and I need to compare the two and get everything but the intersection of the two lists. How can I do this (C#)?
1
vote
2answers
73 views
invoking delegate with generics arguments in c#
I have a class:
public class MyClass<T>
{
public string TestProperty { get; set; }
}
and I want to create a delegate to run on instances of this class, such as:
Actio …
1
vote
2answers
66 views
Is there a way to find an interface implentation based on a generic type argument?
I have a data access library that has a few classes that all implement the same interface, which has a generic type parameter:
public interface IGetByCommonStringRepository<TEn …
4
votes
4answers
130 views
How can I restrict the children of nodes in a tree structure.
I'm creating a tree structure that is based on an AbstractNode class. The AbstractNode class has a generic collection property that contain its child nodes. See the code example be …
0
votes
6answers
106 views
Generic method to recive any type of object and convert the object to a List<string>
Hi,
EDIT AGAIN: the solution was probably different from my original question. Thanks everyone very much your great ideas. I wish I could vote for more than one answer.
EDIT: I a …
1
vote
4answers
70 views
generics error: not applicable for the arguments
Can someone explain to me why the following code does not work?
public class Test {
interface Strategy<T> {
void execute(T t);
}
public static class DefaultStrategy& …
2
votes
4answers
52 views
java: Use of Raw type as method parameter errases all parametrized type information in parameter members.
Please explain me why if I use the raw type A in the method test() , the get() method on my typed list returns an Object and not a B.:
public class test
{
public class B{}
…
3
votes
6answers
93 views
How can I split a generic List (of T) based on a property of a list member?
I have a generic List (of Foo) which contains n objects of Type Foo. One of the properties of Foo is PropertyA. PropertyA can be one of ValueA, ValueB or ValueC. Is there an easy w …
