Skip to content

Commit 6523011

Browse files
committed
adapted namespaces for MemoryExtension Split methods also
1 parent 98b6f34 commit 6523011

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

src/Extensions/ReadOnlySpan/Span/Split.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
using System.Buffers;
1+
using System;
2+
using System.Buffers;
23
using System.Diagnostics;
34
using System.Runtime.CompilerServices;
45

56
#if !NET9_0_OR_GREATER
67

7-
namespace System
8+
namespace SpanExtensions
89
{
910
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
1011
public static partial class MemoryExtensions

src/Extensions/Span/Span/Split.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
using System.Buffers;
1+
using System;
2+
using System.Buffers;
23
using System.Diagnostics;
34
using System.Runtime.CompilerServices;
45

56
#if !NET9_0_OR_GREATER
67

7-
namespace System
8+
namespace SpanExtensions
89
{
910
#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
1011
public static partial class MemoryExtensions

0 commit comments

Comments
 (0)