You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: src/System.Private.CoreLib/shared/System/Memory.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -92,7 +92,7 @@ internal Memory(T[]? array, int start)
92
92
/// <remarks>Returns default when <paramref name="array"/> is null.</remarks>
93
93
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="array"/> is covariant and array's type is not exactly T[].</exception>
Copy file name to clipboardExpand all lines: src/System.Private.CoreLib/shared/System/MemoryExtensions.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -996,7 +996,7 @@ public static Span<T> AsSpan<T>(this T[]? array)
996
996
/// <remarks>Returns default when <paramref name="array"/> is null.</remarks>
997
997
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="array"/> is covariant and array's type is not exactly T[].</exception>
@@ -1022,7 +1022,7 @@ public static Span<T> AsSpan<T>(this ArraySegment<T> segment)
1022
1022
/// <remarks>Returns default when <paramref name="segment"/> is null.</remarks>
1023
1023
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="segment"/> is covariant and array's type is not exactly T[].</exception>
@@ -1056,7 +1056,7 @@ public static Span<T> AsSpan<T>(this ArraySegment<T> segment, Index startIndex)
1056
1056
/// <remarks>Returns default when <paramref name="segment"/> is null.</remarks>
1057
1057
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="segment"/> is covariant and array's type is not exactly T[].</exception>
@@ -1095,7 +1095,7 @@ public static Span<T> AsSpan<T>(this ArraySegment<T> segment, Range range)
1095
1095
/// <remarks>Returns default when <paramref name="array"/> is null.</remarks>
1096
1096
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="array"/> is covariant and array's type is not exactly T[].</exception>
@@ -1127,7 +1127,7 @@ public static Memory<T> AsMemory<T>(this T[]? array, Index startIndex)
1127
1127
/// <remarks>Returns default when <paramref name="array"/> is null.</remarks>
1128
1128
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="array"/> is covariant and array's type is not exactly T[].</exception>
@@ -1165,7 +1165,7 @@ public static Memory<T> AsMemory<T>(this T[]? array, Range range)
1165
1165
/// <remarks>Returns default when <paramref name="segment"/> is null.</remarks>
1166
1166
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="segment"/> is covariant and array's type is not exactly T[].</exception>
@@ -1185,7 +1185,7 @@ public static Memory<T> AsMemory<T>(this ArraySegment<T> segment, int start)
1185
1185
/// <remarks>Returns default when <paramref name="segment"/> is null.</remarks>
1186
1186
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="segment"/> is covariant and array's type is not exactly T[].</exception>
Copy file name to clipboardExpand all lines: src/System.Private.CoreLib/shared/System/ReadOnlyMemory.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -72,7 +72,7 @@ public ReadOnlyMemory(T[]? array)
72
72
/// <remarks>Returns default when <paramref name="array"/> is null.</remarks>
73
73
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="array"/> is covariant and array's type is not exactly T[].</exception>
Copy file name to clipboardExpand all lines: src/System.Private.CoreLib/shared/System/Span.Fast.cs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -66,7 +66,7 @@ public Span(T[]? array)
66
66
/// <remarks>Returns default when <paramref name="array"/> is null.</remarks>
67
67
/// <exception cref="System.ArrayTypeMismatchException">Thrown when <paramref name="array"/> is covariant and array's type is not exactly T[].</exception>
0 commit comments