1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
interface IMember { int GetId (); } interface IMethod : IMember { } class C1 : IMethod { public int GetId () { return 42; } } class X { static void foo<a> (a e ) where a : IMember { e.GetId (); } public static void Main () { foo<IMethod> (new C1 ()); } }