1 // Note how the order of type parameters is different
9 public void Hello (T t
)
13 class Bar
<T
,U
> : Foo
<U
>
18 public void Test (T t
, U u
)
24 static void Test (Bar
<int,string> bar
)
27 bar
.Test (7, "Hello");
32 Bar
<int,string> bar
= new Bar
<int,string> ();