Tagged Questions
4
votes
1answer
330 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
// ...