mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-16 23:34:10 +02:00
Renamed System.Collections.Generic to System.Collections
This commit is contained in:
parent
4cb9791845
commit
dbd9b32e3f
281 changed files with 368 additions and 341 deletions
|
@ -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
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace System
|
||||
|
@ -22,7 +22,7 @@ namespace System
|
|||
[Inline]
|
||||
set
|
||||
{
|
||||
// We only allow reducing the length - consider using System.Collections.Generic.List<T> when dynamic sizing is required
|
||||
// We only allow reducing the length - consider using System.Collections.List<T> when dynamic sizing is required
|
||||
Runtime.Assert(value <= mLength);
|
||||
mLength = (.)value;
|
||||
}
|
||||
|
|
|
@ -16,7 +16,7 @@ namespace System.Collections
|
|||
}
|
||||
}
|
||||
|
||||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
interface IEnumerator<T>
|
||||
{
|
||||
|
|
|
@ -12,7 +12,7 @@ using System.Diagnostics.Contracts;
|
|||
using System.Threading;
|
||||
using System.Reflection;
|
||||
|
||||
namespace System.Collections.Generic
|
||||
namespace System.Collections
|
||||
{
|
||||
interface IList
|
||||
{
|
|
@ -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>
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace System
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Reflection;
|
||||
|
||||
namespace System
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using System.Reflection;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace System
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
using System.Reflection;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace System
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
|
||||
namespace System.Reflection
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using System.Diagnostics;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
|
||||
namespace System
|
||||
{
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using System.Diagnostics;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
|
||||
namespace System
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
using System;
|
||||
using System.Reflection;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace System
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue