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
Copy file name to clipboardExpand all lines: xml/System/ReadOnlySpan`1.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -279,7 +279,7 @@ A `ReadOnlySpan<T>` instance is often used to reference the elements of an array
279
279
</Parameters>
280
280
<Docs>
281
281
<paramname="array">The array from which to create the <seecref="T:System.ReadOnlySpan`1" />.</param>
282
-
<paramname="start">The index of the first element to include.</param>
282
+
<paramname="start">The zero-based index of the first element to include.</param>
283
283
<paramname="length">The number of elements to include.</param>
284
284
<summary>Creates a new <seecref="T:System.ReadOnlySpan`1" /> that includes a specified number of elements of an array starting at a specified index.</summary>
285
285
<remarks>
@@ -1026,7 +1026,7 @@ The following example demonstrates creating an integer array, pinning it, and wr
1026
1026
<ParameterName="start"Type="System.Int32" />
1027
1027
</Parameters>
1028
1028
<Docs>
1029
-
<paramname="start">The index at which to begin the slice.</param>
1029
+
<paramname="start">The zero-based index at which to begin the slice.</param>
1030
1030
<summary>Forms a slice out of the current read-only span that begins at a specified index.</summary>
1031
1031
<returns>A span that consists of all elements of the current span from <paramrefname="start" /> to the end of the span.</returns>
1032
1032
<remarks>To be added.</remarks>
@@ -1068,7 +1068,7 @@ The following example demonstrates creating an integer array, pinning it, and wr
1068
1068
<ParameterName="length"Type="System.Int32" />
1069
1069
</Parameters>
1070
1070
<Docs>
1071
-
<paramname="start">The index at which to begin this slice.</param>
1071
+
<paramname="start">The zero-based index at which to begin this slice.</param>
1072
1072
<paramname="length">The desired length for the slice.</param>
1073
1073
<summary>Forms a slice out of the current read-only span starting at a specified index for a specified length.</summary>
1074
1074
<returns>A read-only span that consists of <paramrefname="length" /> elements from the current span starting at <paramrefname="start" />.</returns>
Copy file name to clipboardExpand all lines: xml/System/Span`1.xml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -269,7 +269,7 @@ If `array` is `null`, this constructor returns a `null` `Span<T>`.
269
269
</Parameters>
270
270
<Docs>
271
271
<paramname="array">The source array.</param>
272
-
<paramname="start">The index of the first element to include in the new <seecref="T:System.Span`1" />.</param>
272
+
<paramname="start">The zero-based index of the first element to include in the new <seecref="T:System.Span`1" />.</param>
273
273
<paramname="length">The number of elements to include in the new <seecref="T:System.Span`1" />. </param>
274
274
<summary>Creates a new <seecref="T:System.Span`1" /> object that includes a specified number of elements of an array starting at a specified index.</summary>
275
275
<remarks>
@@ -1096,7 +1096,7 @@ Two <xref:System.Span%601> objects are not equal if they have different lengths
1096
1096
<ParameterName="start"Type="System.Int32" />
1097
1097
</Parameters>
1098
1098
<Docs>
1099
-
<paramname="start">The index at which to begin the slice.</param>
1099
+
<paramname="start">The zero-based index at which to begin the slice.</param>
1100
1100
<summary>Forms a slice out of the current span that begins at a specified index.</summary>
1101
1101
<returns>A span that consists of all elements of the current span from <paramrefname="start" /> to the end of the span.</returns>
1102
1102
<remarks>To be added.</remarks>
@@ -1138,7 +1138,7 @@ Two <xref:System.Span%601> objects are not equal if they have different lengths
1138
1138
<ParameterName="length"Type="System.Int32" />
1139
1139
</Parameters>
1140
1140
<Docs>
1141
-
<paramname="start">The index at which to begin this slice.</param>
1141
+
<paramname="start">The zero-based index at which to begin this slice.</param>
1142
1142
<paramname="length">The desired length for the slice.</param>
1143
1143
<summary>Forms a slice out of the current span starting at a specified index for a specified length.</summary>
1144
1144
<returns>A span that consists of <paramrefname="length" /> elements from the current span starting at <paramrefname="start" />.</returns>
0 commit comments