(Working on the rest
This comes into play in your question because both of the question methods involved are overloaded. This leads to headaches, basically.
As for the generics side - it's interesting. Method groups don't get much love from C# 3 type inference - I'm not sure whether that's going to be improved in C# 4 or not. If you call a generic method and specify the type argument, type inference works fairly well - but if you try to do it the other way round, it fails:
using System; static void Main() // Valid - it infers Foo<int> DoSomething<int>(Foo); // Valid - both are specified DoSomething<int>(Foo<int>); // Invalid - type inference fails DoSomething(Foo<int>); // Invalid - mismatched types, basically DoSomething<int>(Foo<string>); static void Foo<T>(T input) static void DoSomething<T>(Action<T> action) Console.WriteLine(typeof(T));Type inference in C# 3 is very complicated, and works well in most cases (in particular it's great for LINQ) but fails in a few others. In an ideal world, it would become easier to understand and more powerful in future versions... we'll see!
