Tagged Questions
6
votes
2answers
185 views
Generics, overload resolution and delegates (sorry, can't find a better title) [closed]
Possible Duplicate:
Why is Func<T> ambiguous with Func<IEnumerable<T>>?
I noticed a very weird overload resolution issue with generics...
Consider the following methods:
...
4
votes
1answer
329 views
Overloading, generic type inference and the 'params' keyword
I just noticed a strange behavior with overload resolution.
Assume that I have the following method :
public static void DoSomething<T>(IEnumerable<T> items)
{
// Whatever
// ...
2
votes
3answers
239 views
Avoiding ambiguous invocation error with generic types
I have a two way dictionary class that I am making to allow me to do a fast lookup in either direction.
My class looks (partially) like this:
public class DoubleDictionary<A,B>
{
private ...