1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-19 16:40:26 +02:00

Added Obsolete support for moved collections

This commit is contained in:
Brian Fiete 2020-04-29 09:53:48 -07:00
parent dbd9b32e3f
commit 842a6a8898
16 changed files with 232 additions and 109 deletions

View file

@ -654,3 +654,9 @@ namespace System.Collections
}
}
}
namespace System.Collections.Generic
{
[Obsolete("The System.Collections.Generic containers have been moved into System.Collections", false)]
typealias List<T> = System.Collections.List<T>;
}