2 using System
.Collections
.Generic
;
6 public static class IncompleteGenericInference
8 public static void DoSomethingGeneric
<T1
, T2
>(IEnumerable
<T1
> t1
, IDictionary
<T1
,T2
> t2
)
12 public static void Main()
14 List
<int> list
= new List
<int>();
15 System
.Collections
.Generic
.Dictionary
<int, float> dictionary
= new Dictionary
<int, float>();
16 DoSomethingGeneric(list
, dictionary
);