Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

42
votes
4answers
16k views

How is Generic Covariance & Contra-variance Implemented in C# 4.0?

I didn't attend PDC 2008, but I heard some news that C# 4.0 is announced to support Generic covariance and contra-variance. That is, List<string> can be assigned to List<object>. How could ...
14
votes
3answers
1k views

Generic Variance in C# 4.0

Generic Variance in C# 4.0 has been implemented in such a way that it's possible to write the following without an exception (which is what would happen in C# 3.0): List<int> intList = new ...
9
votes
3answers
280 views

Customizing Autofac's component resolution / Issue with generic co-/contravariance

First, sorry for the vague question title. I couldn't come up with a more precise one. Given these types: { TCommand : ICommand } ...
4
votes
2answers
169 views

Multiple Generics ambiguity

The codes below are exactly the same, except that one is C# and the other one is VB.Net. C# compiles just fine, but VB.Net throws the warning: Interface 'System.IObserver(Of Foo)' is ambiguous ...
4
votes
2answers
128 views

Why can I cast the invariance of IList<T> away?

Currently I'm preparing a presentation of the new generic variance features in C# for my colleagues. To cut the story short I wrote following lines: IList<Form> formsList = new List<Form> ...
2
votes
2answers
168 views

Class hierarchy problem (with generic's variance!)

The problem: class StatesChain : IState, IHasStateList { private TasksChain tasks = new TasksChain(); ... public IList<IState> States { get { return _taskChain.Tasks; } ...
1
vote
3answers
85 views

generics JAVA in c++? how to do <X extends T>?

class T : public std::string { public: T(char* s) : std::string(s){}; }; class X : public T { public: X(char* s) : T(s) {}; ~X() {}; }; template <typename T> T ...
1
vote
1answer
388 views

Problem using Lazy<T> from within a generic abstract class

I have a generic class that all my DAO classes derive from, which is defined below. I also have a base class for all my entities, but that is not generic. The method GetIdOrSave is going to be a ...
1
vote
1answer
238 views

C# Delegate under the hood question

I was doing some digging around into delegate variance after reading the following question in SO : ...