Since I am using two different generic collection namespaces (System.Collections.Generic and Iesi.Collections.Generic), I have conflicts. In other
System.Collections.Generic
Iesi.Collections.Generic
In some cases you can go with inheritance:
public class MyList : List>, IComparable>> { } public void Meth() { var x = new MyList(); }