Skip to content

Commit f26c0b1

Browse files
carlossanlopRon Petrusha
authored andcommitted
Document StringBuilder.Append (#2820)
1 parent f1abff3 commit f26c0b1

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

xml/System.Text/StringBuilder.xml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1336,9 +1336,9 @@
13361336
<Parameter Name="value" Type="System.ReadOnlyMemory&lt;System.Char&gt;" Index="0" FrameworkAlternate="netcore-3.0" />
13371337
</Parameters>
13381338
<Docs>
1339-
<param name="value">To be added.</param>
1340-
<summary>To be added.</summary>
1341-
<returns>To be added.</returns>
1339+
<param name="value">The read-only character memory region to append.</param>
1340+
<summary>Appends the string representation of a specified read-only character memory region to this instance.</summary>
1341+
<returns>A reference to this instance after the append operation is completed.</returns>
13421342
<remarks>To be added.</remarks>
13431343
</Docs>
13441344
</Member>
@@ -1368,9 +1368,9 @@
13681368
<Parameter Name="value" Type="System.ReadOnlySpan&lt;System.Char&gt;" Index="0" FrameworkAlternate="netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
13691369
</Parameters>
13701370
<Docs>
1371-
<param name="value">To be added.</param>
1372-
<summary>To be added.</summary>
1373-
<returns>To be added.</returns>
1371+
<param name="value">The read-only character span to append.</param>
1372+
<summary>Appends the string representation of a specified read-only character span to this instance.</summary>
1373+
<returns>A reference to this instance after the append operation is completed.</returns>
13741374
<remarks>To be added.</remarks>
13751375
</Docs>
13761376
</Member>
@@ -1593,9 +1593,9 @@
15931593
<Parameter Name="value" Type="System.Text.StringBuilder" Index="0" FrameworkAlternate="netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
15941594
</Parameters>
15951595
<Docs>
1596-
<param name="value">To be added.</param>
1597-
<summary>To be added.</summary>
1598-
<returns>To be added.</returns>
1596+
<param name="value">The string builder to append.</param>
1597+
<summary>Appends the string representation of a specified string builder to this instance.</summary>
1598+
<returns>A reference to this instance after the append operation is completed.</returns>
15991599
<remarks>To be added.</remarks>
16001600
</Docs>
16011601
</Member>
@@ -2130,11 +2130,11 @@
21302130
<Parameter Name="count" Type="System.Int32" Index="2" FrameworkAlternate="netcore-2.1;netcore-2.2;netcore-3.0;netstandard-2.1" />
21312131
</Parameters>
21322132
<Docs>
2133-
<param name="value">To be added.</param>
2134-
<param name="startIndex">To be added.</param>
2135-
<param name="count">To be added.</param>
2136-
<summary>To be added.</summary>
2137-
<returns>To be added.</returns>
2133+
<param name="value">The string builder that contains the substring to append.</param>
2134+
<param name="startIndex">The starting position of the substring within <paramref name="value" />.</param>
2135+
<param name="count">The number of characters in <paramref name="value" /> to append.</param>
2136+
<summary>Appends a copy of a substring within a specified string builder to this instance.</summary>
2137+
<returns>A reference to this instance after the append operation has completed.</returns>
21382138
<remarks>To be added.</remarks>
21392139
</Docs>
21402140
</Member>

0 commit comments

Comments
 (0)