Since I am using two different generic collection namespaces (System.Collections.Generic and Iesi.Collections.Generic), I have conflicts. In other
Unfortunately, the using directive does not do what you want. You can say:
using Frob = System.String;
and
using ListOfInts = System.Collections.Generic.List;
but you cannot say
using Blob = System.Collections.Generic.List
or
using Blob = System.Collections.Generic.List
It's a shortcoming of the language that has never been rectified.