// CS1503: Argument `#2' cannot convert `method group' expression to type `System.Collections.Generic.Comparer' // Line: 20 using System; using System.Collections.Generic; public class C { static void Foo(T t, Comparer tc) { } static int Compare (int a, int b) { return -1; } public static void Main () { Foo (1, Compare); } }