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/String.xml
+8-25Lines changed: 8 additions & 25 deletions
Original file line number
Diff line number
Diff line change
@@ -3176,6 +3176,14 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/en-us/dow
3176
3176
</AssemblyInfo>
3177
3177
<Docs>
3178
3178
<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>
3179
3187
</Docs>
3180
3188
</MemberGroup>
3181
3189
<Member MemberName="Concat">
@@ -3608,15 +3616,8 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/en-us/dow
3608
3616
## Remarks
3609
3617
The method concatenates `str0` and `str1`; it does not add any delimiters.
3610
3618
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
-
3616
3619
An <xref:System.String.Empty> string is used in place of any null argument.
3617
3620
3618
-
3619
-
3620
3621
## Examples
3621
3622
The following example concatenates a person's first, middle, and last name.
3622
3623
@@ -3784,15 +3785,6 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/en-us/dow
3784
3785
## Remarks
3785
3786
The method concatenates `str0`, `str1`, and `str2`; it does not add any delimiters.
3786
3787
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
-
3796
3788
## Examples
3797
3789
The following example uses the <xref:System.String.Concat%2A> method to concatenate three strings and displays the result.
3798
3790
@@ -3974,15 +3966,6 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/en-us/dow
3974
3966
## Remarks
3975
3967
The method concatenates `str0`, `str1`, `str2`, and `str3`; it does not add any delimiters.
3976
3968
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
-
3986
3969
## Examples
3987
3970
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.
0 commit comments