Unity-Reorderable-List icon indicating copy to clipboard operation
Unity-Reorderable-List copied to clipboard

asmdef conflicts with System.Collections.Generic

Open Cryptomane opened this issue 4 years ago • 0 comments

I noticed that ever since I included this package I can't seem to be able to initialize a generic list using anything but the default constructor even when I'm not referencing the namespace.

For now I'm working around it by adding using Generics = System.Collections.Generic; and then using new Generics.List<T>(int) in my code, but it would be awesome if this package would either not mess with the linking of Generics or provide those constructor overloads.

Cryptomane avatar May 03 '21 09:05 Cryptomane