1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-20 08:58: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

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