3 public void apply (C
<X
,Y
> t
)
9 public void foo
<A
,B
> ()
11 Q
<A
,B
> q
= new Q
<A
,B
>();
15 public void bar
<A
,B
> ()
17 System
.Console
.WriteLine ("'{0} {1} {2} {3}'",
18 typeof(X
),typeof(Y
),typeof(A
),typeof(B
));
23 public static void Main () {
24 C
<int,string> c
= new C
<int,string>();
25 c
.foo
<float,string> ();