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>
@@ -6318,9 +6317,9 @@ String 'This is a string.' in domain 'NewDomain': 75CC8236
<param name="value">A read-only character span.</param>
6386
+
<param name="comparisonType">One of the enumeration values that specifies the rules to use in the comparison.</param>
6387
+
<summary>Returns the hash code for the provided read-only character span using the specified rules.</summary>
6388
+
<returns>A 32-bit signed integer hash code.</returns>
6390
6389
<remarks>To be added.</remarks>
6391
6390
</Docs>
6392
6391
</Member>
@@ -6423,10 +6422,20 @@ String 'This is a string.' in domain 'NewDomain': 75CC8236
6423
6422
</ReturnValue>
6424
6423
<Parameters />
6425
6424
<Docs>
6426
-
<summary>Returns a reference to the first element of the string.</summary>
6427
-
<returns>A pinnable reference to the first element of the string as a read-only char.</returns>
6428
-
<remarks>To be added.</remarks>
6429
-
<exception cref="T:System.NullReferenceException">The string is <see langword="null" />.</exception>
6425
+
<summary>Returns a reference to the element of the string at index zero.</summary>
6426
+
<returns>A character representing the reference to the element of the string at index zero.</returns>
6427
+
<remarks>
6428
+
<format type="text/markdown">
6429
+
<![CDATA[
6430
+
6431
+
## Remarks
6432
+
6433
+
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.
6434
+
6435
+
]]>
6436
+
</format>
6437
+
</remarks>
6438
+
<exception cref="T:System.NullReferenceException">The string is null.</exception>
0 commit comments