1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Changing System.Runtime namespace

This commit is contained in:
Brian Fiete 2019-12-11 12:53:02 -08:00
parent b900ec1a4a
commit 33edbd18bb
16 changed files with 6 additions and 17 deletions

View file

@ -1,7 +1,6 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime;
using System.Diagnostics;
namespace Beefy.utils

View file

@ -1,5 +1,4 @@
using System;
using System.Runtime.CompilerServices;
using System.Diagnostics.Contracts;
using System.Security;
using System.Diagnostics;

View file

@ -7,7 +7,6 @@
#endif
using System;
using System.Runtime;
using System.Diagnostics;
using System.Diagnostics.Contracts;
using System.Threading;

View file

@ -8,7 +8,6 @@ namespace System {
using System;
using System.Threading;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Diagnostics.Contracts;
// DateTimeOffset is a value type that consists of a DateTime and a time zone offset,

View file

@ -6,7 +6,6 @@ namespace System
{
using System;
using System.Globalization;
using System.Runtime.CompilerServices;
using System.Diagnostics.Contracts;
using System.Diagnostics;

View file

@ -4,7 +4,6 @@
namespace System.Globalization {
using System;
using System.Runtime.CompilerServices;
using System.Globalization;
using System.Diagnostics.Contracts;

View file

@ -6,7 +6,6 @@ namespace System.Globalization
{
using System;
using System.Runtime.CompilerServices;
using System.Diagnostics.Contracts;
using System.Diagnostics;

View file

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

View file

@ -5,8 +5,6 @@
namespace System
{
using System;
using System.Runtime;
using System.Runtime.CompilerServices;
using System.Diagnostics.Contracts;
using System.Diagnostics;

View file

@ -33,7 +33,6 @@
using System.Globalization;
using System.Text;
using System.Threading;
using System.Runtime.CompilerServices;
namespace System
{

View file

@ -15,8 +15,6 @@
namespace System
{
using System;
using System.Runtime;
using System.Runtime.CompilerServices;
using System.Globalization;
using System.Diagnostics.Contracts;
using System.Diagnostics;

View file

@ -6,7 +6,7 @@ using System.Threading.Tasks;
using System.Diagnostics.Contracts;
using System.Threading;
namespace System.Runtime.CompilerServices
namespace System.Threading.Tasks
{
public struct TaskAwaiter
{

View file

@ -1959,6 +1959,11 @@ namespace System
return StringSplitEnumerator(Ptr, Length, separators, Int32.MaxValue, StringSplitOptions.None);
}
public StringSplitEnumerator Split(char8[] separators)
{
return StringSplitEnumerator(Ptr, Length, separators, Int32.MaxValue, StringSplitOptions.None);
}
public StringSplitEnumerator Split(char8[] separators, int count)
{
return StringSplitEnumerator(Ptr, Length, separators, count, StringSplitOptions.None);

View file

@ -2,7 +2,6 @@
// 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.Runtime.CompilerServices;
using System.Collections.Generic;
using System.Diagnostics;

View file

@ -4,7 +4,6 @@
using System.Collections.Generic;
using System.Diagnostics.Contracts;
using System.Runtime.CompilerServices;
using System.Diagnostics;
namespace System.Threading.Tasks

View file

@ -33,7 +33,6 @@ namespace System {
using System.Diagnostics.Contracts;
using System.Globalization;
using System.IO;
using System.Runtime.CompilerServices;
using System.Security;
using System.Text;
using System.Threading;