From d81eb4d8caa23aec9f75f917e87882c676b0f917 Mon Sep 17 00:00:00 2001 From: carlossanlop Date: Wed, 24 Jul 2019 13:17:44 -0700 Subject: [PATCH] Document StringBuilder.Append --- xml/System.Text/StringBuilder.xml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/xml/System.Text/StringBuilder.xml b/xml/System.Text/StringBuilder.xml index 0674be86f51..4f04a73e93e 100644 --- a/xml/System.Text/StringBuilder.xml +++ b/xml/System.Text/StringBuilder.xml @@ -1336,9 +1336,9 @@ - To be added. - To be added. - To be added. + The read-only character memory region to append. + Appends the string representation of a specified read-only character memory region to this instance. + A reference to this instance after the append operation is completed. To be added. @@ -1368,9 +1368,9 @@ - To be added. - To be added. - To be added. + The read-only character span to append. + Appends the string representation of a specified read-only character span to this instance. + A reference to this instance after the append operation is completed. To be added. @@ -1593,9 +1593,9 @@ - To be added. - To be added. - To be added. + The string builder to append. + Appends the string representation of a specified string builder to this instance. + A reference to this instance after the append operation is completed. To be added. @@ -2130,11 +2130,11 @@ - To be added. - To be added. - To be added. - To be added. - To be added. + The string builder that contains the substring to append. + The starting position of the substring within . + The number of characters in to append. + Appends a copy of a substring within a specified string builder to this instance. + A reference to this instance after the append operation has completed. To be added.