Skip to content

Merge main into live #11308

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions xml/System/String.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11592,7 +11592,7 @@ The following example demonstrates the <xref:System.String.PadRight%2A> method.
<format type="text/markdown"><![CDATA[

## Remarks
In the .NET Framework, strings are zero-based. The value of the `startIndex` parameter can range from zero to one less than the length of the string instance.
In the .NET Framework, strings are zero-based. The value of the `startIndex` parameter can range from zero to the length of the string instance.

> [!NOTE]
> This method does not modify the value of the current instance. Instead, it returns a new string in which all characters from position `startIndex` to the end of the original string have been removed.
Expand All @@ -11612,7 +11612,7 @@ The following example demonstrates the <xref:System.String.Remove%2A> method. Th

-or-

<paramref name="startIndex" /> specifies a position that is not within this string.</exception>
<paramref name="startIndex" /> is greater than the length of this instance.</exception>
<altmember cref="T:System.Int32" />
<altmember cref="M:System.String.Concat(System.Object)" />
<altmember cref="M:System.String.Insert(System.Int32,System.String)" />
Expand Down
Loading