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

Renamed System.Collections.Generic to System.Collections

This commit is contained in:
Brian Fiete 2020-04-29 06:40:03 -07:00
parent 4cb9791845
commit dbd9b32e3f
281 changed files with 368 additions and 341 deletions

View file

@ -16,7 +16,7 @@ namespace System.Collections
}
}
namespace System.Collections.Generic
namespace System.Collections
{
interface IEnumerator<T>
{

View file

@ -12,7 +12,7 @@ using System.Diagnostics.Contracts;
using System.Threading;
using System.Reflection;
namespace System.Collections.Generic
namespace System.Collections
{
interface IList
{

View file

@ -2,7 +2,7 @@
// of an open-sourcing initiative in 2014 of the C# core libraries.
// The original source was submitted to https://github.com/Microsoft/referencesource
namespace System.Collections.Generic
namespace System.Collections
{
struct Sorter<T, T2>
{