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
<param name="str0">The first read-only character span to concatenate.</param>
3727
+
<param name="str1">The second read-only character span to concatenate.</param>
3728
+
<param name="str2">The third read-only character span to concatenate.</param>
3729
+
<summary>Concatenates the string representations of three specified read-only character spans.</summary>
3730
+
<returns>The concatenated string representations of the values of <paramref name="str0" />, <paramref name="str1" /> and <paramref name="str2" />.</returns>
3731
3731
<remarks>To be added.</remarks>
3732
3732
</Docs>
3733
3733
</Member>
@@ -3901,12 +3901,12 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/download/
<param name="value">The character to seek.</param>
4077
+
<summary>Returns a value indicating whether a specified character occurs within this string.</summary>
4078
+
<returns><see langword="true" /> if the <paramref name="value" /> parameter occurs within this string; otherwise, <see langword="false" />.</returns>
4079
4079
<remarks>To be added.</remarks>
4080
4080
</Docs>
4081
4081
</Member>
@@ -4121,8 +4121,7 @@ You can download the [Sorting Weight Tables](https://www.microsoft.com/download/
4121
4121
<Docs>
4122
4122
<param name="value">The string to seek.</param>
4123
4123
<summary>Returns a value indicating whether a specified substring occurs within this string.</summary>
4124
-
<returns>
4125
-
<see langword="true" /> if the <paramref name="value" /> parameter occurs within this string, or if <paramref name="value" /> is the empty string (""); otherwise, <see langword="false" />.</returns>
4124
+
<returns><see langword="true" /> if the <paramref name="value" /> parameter occurs within this string, or if <paramref name="value" /> is the empty string (""); otherwise, <see langword="false" />.</returns>
4126
4125
<remarks>
4127
4126
<format type="text/markdown"><; otherwise, <see langword="false" />.</returns>
4226
4225
<remarks>To be added.</remarks>
4227
4226
</Docs>
4228
4227
</Member>
@@ -6308,9 +6307,9 @@ String 'This is a string.' in domain 'NewDomain': 75CC8236
<param name="value">A read-only character span.</param>
6376
+
<param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
6377
+
<summary>Returns the hash code for the provided read-only character span using the specified rules.</summary>
6378
+
<returns>A 32-bit signed integer hash code.</returns>
6380
6379
<remarks>To be added.</remarks>
6381
6380
</Docs>
6382
6381
</Member>
@@ -6413,9 +6412,18 @@ String 'This is a string.' in domain 'NewDomain': 75CC8236
6413
6412
</ReturnValue>
6414
6413
<Parameters />
6415
6414
<Docs>
6416
-
<summary>To be added.</summary>
6417
-
<returns>To be added.</returns>
6418
-
<remarks>To be added.</remarks>
6415
+
<summary>Returns a reference to the element of the string at index zero.</summary>
6416
+
<returns>A character representing the reference to the element of the string at index zero.</returns>
6417
+
<remarks>
6418
+
<format type="text/markdown"><![CDATA[
6419
+
6420
+
## Remarks
6421
+
6422
+
The `GetPinnableReference` method returns a character that can be used for pinning a <xref:System.String> in memory. It is required to support the use of a <xref:System.String> within a fixed statement.
6423
+
6424
+
]]></format>
6425
+
</remarks>
6426
+
<exception cref="T:System.NullReferenceException">The string is null.</exception>
0 commit comments