Skip to content

Commit 49e39a5

Browse files
author
Ron Petrusha
authored
Corrected formatting issue and added detail (#2389)
* Corrected formatting issue. * Removed unnecessary close paren * Corrected remaining occurrences
1 parent 9a1a589 commit 49e39a5

File tree

1 file changed

+8
-25
lines changed

1 file changed

+8
-25
lines changed

xml/System/String.xml

Lines changed: 8 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3176,6 +3176,14 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/en-us/dow
31763176
</AssemblyInfo>
31773177
<Docs>
31783178
<summary>Concatenates one or more instances of <see cref="T:System.String" />, or the <see cref="T:System.String" /> representations of the values of one or more instances of <see cref="T:System.Object" />.</summary>
3179+
<remarks>
3180+
<format type="text/markdown"><![CDATA[
3181+
3182+
> [!NOTE]
3183+
> You can also use your language's string concatenation operator, such as `+` in C#, or `&` and `+` in Visual Basic, to concatenate strings. Both compilers translate the concatenation operator into a call to one of the overloads of `String.Concat`.
3184+
3185+
]]></format>
3186+
</remarks>
31793187
</Docs>
31803188
</MemberGroup>
31813189
<Member MemberName="Concat">
@@ -3608,15 +3616,8 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/en-us/dow
36083616
## Remarks
36093617
The method concatenates `str0` and `str1`; it does not add any delimiters.
36103618

3611-
> [!NOTE]
3612-
> You can also use your language's string concatenation operator, such as `+` in C#, or `&` and `+` in Visual Basic)
3613-
>
3614-
> , to concatenate strings.
3615-
36163619
An <xref:System.String.Empty> string is used in place of any null argument.
36173620

3618-
3619-
36203621
## Examples
36213622
The following example concatenates a person's first, middle, and last name.
36223623

@@ -3784,15 +3785,6 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/en-us/dow
37843785
## Remarks
37853786
The method concatenates `str0`, `str1`, and `str2`; it does not add any delimiters.
37863787

3787-
> [!NOTE]
3788-
> You can also use your language's string concatenation operator, such as `+` in C#, or `&` and `+` in Visual Basic)
3789-
>
3790-
> , to concatenate strings.
3791-
3792-
An <xref:System.String.Empty> string is used in place of any null argument.
3793-
3794-
3795-
37963788
## Examples
37973789
The following example uses the <xref:System.String.Concat%2A> method to concatenate three strings and displays the result.
37983790

@@ -3974,15 +3966,6 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/en-us/dow
39743966
## Remarks
39753967
The method concatenates `str0`, `str1`, `str2`, and `str3`; it does not add any delimiters.
39763968

3977-
> [!NOTE]
3978-
> You can also use your language's string concatenation operator, such as `+` in C#, or `&` and `+` in Visual Basic)
3979-
>
3980-
> , to concatenate strings.
3981-
3982-
An <xref:System.String.Empty> string is used in place of any null object in the array.
3983-
3984-
3985-
39863969
## Examples
39873970
The following example defines an array of four-letter words and stores their individual letters to a string array in order to scramble them. It then calls the <xref:System.String.Concat%28System.String%2CSystem.String%2CSystem.String%2CSystem.String%29> method to reassemble the scrambled words.
39883971

0 commit comments

Comments
 (0)