1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-21 17:28:00 +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

@ -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 = (int_arsize)value;
}

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
namespace System
{

View file

@ -4,7 +4,7 @@
using System.Diagnostics;
namespace System.Collections.Generic
namespace System.Collections
{
public class BinaryHeap<T>
{

View file

@ -6,7 +6,7 @@
#define VERSION_DICTIONARY
#endif
namespace System.Collections.Generic
namespace System.Collections
{
using System;
using System.Collections;

View file

@ -1,4 +0,0 @@
namespace System.Collections.Generic
{
}

View file

@ -8,13 +8,13 @@
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using System.Diagnostics.Contracts;
using System.Text;
using System.Security;
namespace System.Collections.Generic
namespace System.Collections
{
/// Implementation notes:
/// This uses an array-based implementation similar to Dictionary<T>, using a buckets array

View file

@ -1,4 +1,4 @@
namespace System.Collections.Generic
namespace System.Collections
{
interface ICollection<T>
{

View file

@ -0,0 +1,4 @@
namespace System.Collections
{
}

View file

@ -1,6 +1,6 @@
using System;
namespace System.Collections.Generic
namespace System.Collections
{
interface IEnumerator<T>
{

View file

@ -1,4 +1,4 @@
namespace System.Collections.Generic
namespace System.Collections
{
using System;

View file

@ -1,4 +1,4 @@
namespace System.Collections.Generic
namespace System.Collections
{
public struct KeyValuePair<TKey, TValue>
{

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

@ -6,7 +6,7 @@
#define VERSION_QUEUE
#endif
namespace System.Collections.Generic
namespace System.Collections
{
using System;
using System.Diagnostics;

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>
{

View file

@ -1,7 +1,7 @@
using System.IO;
using System.Text;
using System.Threading;
using System.Collections.Generic;
using System.Collections;
namespace System.Diagnostics
{

View file

@ -1,7 +1,7 @@
using System.IO;
using System.Threading;
using System.Text;
using System.Collections.Generic;
using System.Collections;
namespace System.Diagnostics
{

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Threading;
namespace System.Diagnostics

View file

@ -1,5 +1,5 @@
using System.Text;
using System.Collections.Generic;
using System.Collections;
namespace System.Diagnostics
{

View file

@ -1,5 +1,5 @@
using System.IO;
using System.Collections.Generic;
using System.Collections;
namespace System.Diagnostics
{

View file

@ -1,5 +1,5 @@
using System.IO;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace System

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System

View file

@ -1,5 +1,5 @@
using System.Diagnostics;
using System.Collections.Generic;
using System.Collections;
// This file contains portions of code released by Microsoft under the MIT license as part
// of an open-sourcing initiative in 2014 of the C# core libraries.
// The original source was submitted to https://github.com/Microsoft/referencesource

View file

@ -6,7 +6,7 @@ namespace System {
using System.Text;
using System.Threading;
using System.Globalization;
using System.Collections.Generic;
using System.Collections;
using System.Security;
using System.Diagnostics.Contracts;

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
namespace System.Globalization
{
enum MonthNameStyles {

View file

@ -10,7 +10,7 @@ namespace System.Globalization {
using System;
using System.Diagnostics.Contracts;
using System.Globalization;
using System.Collections.Generic;
using System.Collections;
static class TimeSpanFormat
{

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System.IO

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System.IO

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Text;
using System.Diagnostics;

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
namespace System.IO
{

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System.IO

View file

@ -3,7 +3,7 @@
// The original source was submitted to https://github.com/Microsoft/referencesource
using System.Diagnostics;
using System.Collections.Generic;
using System.Collections;
using System.Threading;
using System.Text;

View file

@ -7,7 +7,7 @@ using System.Diagnostics;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.Collections.Generic;
using System.Collections;
namespace System.IO
{

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System.IO

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
using System.Reflection;
namespace System

View file

@ -1,5 +1,5 @@
using System.Reflection;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System

View file

@ -1,6 +1,6 @@
using System;
using System.Reflection;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
namespace System
{

View file

@ -1,4 +1,4 @@
using System.Collections.Generic;
using System.Collections;
namespace System.Reflection
{

View file

@ -2,7 +2,7 @@ using System;
using System.Reflection;
using System.FFI;
using System.Diagnostics;
using System.Collections.Generic;
using System.Collections;
namespace System.Reflection
{

View file

@ -1,5 +1,5 @@
using System.Diagnostics;
using System.Collections.Generic;
using System.Collections;
namespace System
{

View file

@ -3,7 +3,7 @@
// The original source was submitted to https://github.com/Microsoft/referencesource
using System.Diagnostics.Contracts;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using System.Text;
using System.Threading;

View file

@ -1,5 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections;
namespace System
{

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
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System.Threading.Tasks

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
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics.Contracts;
using System.Diagnostics;

View file

@ -1,6 +1,6 @@
using System;
using System.Diagnostics;
using System.Collections.Generic;
using System.Collections;
//#define DISABLE_THREADS

View file

@ -28,7 +28,7 @@
namespace System {
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
using System.Diagnostics.Contracts;
using System.Globalization;

View file

@ -1,6 +1,6 @@
using System;
using System.Reflection;
using System.Collections.Generic;
using System.Collections;
using System.Diagnostics;
namespace System

View file

@ -1,7 +1,7 @@
#if BF_PLATFORM_WINDOWS
using System.IO;
using System.Collections.Generic;
using System.Collections;
using System.Text;
namespace System