In C# 1.x only the second version would compile.
C# 2.0 added implicit method group conversions which allows you to write the first version. The two are equivalent. Sometimes it is necessary to use the more explicit form in the case that there is ambiguity.
See the section Delegate inference from Jon Skeet's article Delegate changes for more information.
Mark Byers
2010-08-05 19:18:40