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/Environment+ProcessCpuUsage.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -71,7 +71,7 @@
71
71
<ReturnType>System.TimeSpan</ReturnType>
72
72
</ReturnValue>
73
73
<Docs>
74
-
<summary>Gets the amount of time the process has spent utilizing the CPU including the process time spent in the application code and the process time spent in the operating system code.</summary>
74
+
<summary>Gets the amount of time the process has spent utilizing the CPU, including the process time spent in the application code and in the operating system code.</summary>
<paramrefname="timestamp" /> represents an offset prior to <seecref="F:System.DateTimeOffset.UnixEpoch" />.</exception>
@@ -3021,8 +3021,8 @@ Because the `provider` parameter is ignored, you cannot use it to provide a cust
3021
3021
<summary>Gets the value of the variant field for the <seecref="T:System.Guid" />.</summary>
3022
3022
<value>To be added.</value>
3023
3023
<remarks>
3024
-
<para>This corresponds to the most significant 4 bits of the 8th byte: 00000000-0000-0000-F000-000000000000. The "don't-care" bits are not masked out.</para>
3025
-
<para>See RFC 9562 for more information on how to interpret this value.</para>
3024
+
<para>This property corresponds to the most significant 4 bits of the 8th byte: 00000000-0000-0000-F000-000000000000. The "don't-care" bits are not masked out.</para>
3025
+
<para>For more information on how to interpret this value, see <seehref="https://www.rfc-editor.org/rfc/rfc9562.html">RFC 9562</see>.</para>
3026
3026
</remarks>
3027
3027
</Docs>
3028
3028
</Member>
@@ -3051,8 +3051,8 @@ Because the `provider` parameter is ignored, you cannot use it to provide a cust
3051
3051
<summary>Gets the value of the version field for the <seecref="T:System.Guid" />.</summary>
3052
3052
<value>To be added.</value>
3053
3053
<remarks>
3054
-
<para>This corresponds to the most significant 4 bits of the 6th byte: 00000000-0000-F000-0000-000000000000.</para>
3055
-
<para>See RFC 9562 for more information on how to interpret this value.</para>
3054
+
<para>This property corresponds to the most significant 4 bits of the 6th byte: 00000000-0000-F000-0000-000000000000.</para>
3055
+
<para>For more information on how to interpret this value, see <seehref="https://www.rfc-editor.org/rfc/rfc9562.html">RFC 9562</see>.</para>
Copy file name to clipboardExpand all lines: xml/System/MemoryExtensions.xml
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -9339,7 +9339,7 @@ Invalid sequences will be represented in the enumeration by <xref:System.Text.Ru
9339
9339
<summary>
9340
9340
<para>Returns a type that allows for enumeration of each element within a split span using the provided separator span.</para>
9341
9341
</summary>
9342
-
<returns>Returns a <see cref="T:System.MemoryExtensions.SpanSplitEnumerator`1" />.</returns>
9342
+
<returns>An enumerator that can be used to enumerate each element in a split span using the provided separator span.</returns>
9343
9343
<remarks>To be added.</remarks>
9344
9344
</Docs>
9345
9345
</Member>
@@ -9404,7 +9404,7 @@ Invalid sequences will be represented in the enumeration by <xref:System.Text.Ru
9404
9404
<summary>
9405
9405
<para>Returns a type that allows for enumeration of each element within a split span using the provided separator character.</para>
9406
9406
</summary>
9407
-
<returns>Returns a <see cref="T:System.MemoryExtensions.SpanSplitEnumerator`1" />.</returns>
9407
+
<returns>An enumerator that can be used to enumerate each element in a split span using the provided separator character.</returns>
9408
9408
<remarks>To be added.</remarks>
9409
9409
</Docs>
9410
9410
</Member>
@@ -9558,14 +9558,14 @@ Invalid sequences will be represented in the enumeration by <xref:System.Text.Ru
9558
9558
<Docs>
9559
9559
<typeparam name="T">The type of the elements.</typeparam>
9560
9560
<param name="source">The source span to be enumerated.</param>
9561
-
<param name="separators">The <see cref="T:System.MemoryExtensions.SpanSplitEnumerator`1" /> to be used to split the provided span.</param>
9561
+
<param name="separators">The <see cref="T:System.Buffers.SearchValues`1" /> to be used to split the provided span.</param>
9562
9562
<summary>
9563
-
<para>Returns a type that allows for enumeration of each element within a split span using the provided <see cref="T:System.MemoryExtensions.SpanSplitEnumerator`1" />.</para>
9563
+
<para>Returns a type that allows for enumeration of each element within a split span using the provided separator characters.</para>
9564
9564
</summary>
9565
-
<returns>Returns a <see cref="T:System.MemoryExtensions.SpanSplitEnumerator`1" />.</returns>
9565
+
<returns>An enumerator that can be used to enumerate each element in a split span using the provided separator characters.</returns>
9566
9566
<remarks>
9567
-
<para>Unlike <see cref="M:System.MemoryExtensions.SplitAny``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})" />, the <paramref name="separators" /> is not checked for being empty.</para>
9568
-
<para>An empty <paramref name="separators" /> will result in no separators being found, regardless of the type of <typeparamref name="T" />, whereas <see cref="M:System.MemoryExtensions.SplitAny``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})" /> will use all Unicode whitespace characters as separators if <paramref name="separators" /> is empty and <typeparamref name="T" /> is <see cref="T:System.Char" />.</para>
9567
+
<para>Unlike <see cref="M:System.MemoryExtensions.SplitAny``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})" />, <paramref name="separators" /> is not checked for being empty.</para>
9568
+
<para>An empty <paramref name="separators" /> argument will result in no separators being found, regardless of the type of <typeparamref name="T" />, whereas <see cref="M:System.MemoryExtensions.SplitAny``1(System.ReadOnlySpan{``0},System.ReadOnlySpan{``0})" /> uses all Unicode whitespace characters as separators if <paramref name="separators" /> is empty and <typeparamref name="T" /> is <see cref="T:System.Char" />.</para>
9569
9569
</remarks>
9570
9570
</Docs>
9571
9571
</Member>
@@ -9633,7 +9633,7 @@ Invalid sequences will be represented in the enumeration by <xref:System.Text.Ru
9633
9633
<summary>
9634
9634
<para>Returns a type that allows for enumeration of each element within a split span using any of the provided elements.</para>
9635
9635
</summary>
9636
-
<returns>Returns a <see cref="T:System.MemoryExtensions.SpanSplitEnumerator`1" />.</returns>
9636
+
<returns>An enumerator that can be used to enumerate each element in a split span using the provided separator characters.</returns>
9637
9637
<remarks>
9638
9638
<para>If <typeparamref name="T" /> is <see cref="T:System.Char" /> and if <paramref name="separators" /> is empty, all Unicode whitespace characters are used as the separators. This matches the behavior of when <see cref="M:System.String.Split(System.Char[])" /> and related overloads are used with an empty separator array, or when <see cref="M:System.MemoryExtensions.SplitAny(System.ReadOnlySpan{System.Char},System.Span{System.Range},System.ReadOnlySpan{System.Char},System.StringSplitOptions)" /> is used with an empty separator span.</para>
0 commit comments