Skip to content

Commit fcd88a2

Browse files
authored
Port System.CodeDom and System.Runtime.InteropServices new docs (#10217)
* System.CodeDom.Compiler * System.Runtime.InteropServices
1 parent 90cdbe6 commit fcd88a2

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

xml/System.CodeDom.Compiler/IndentedTextWriter.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1420,9 +1420,9 @@
14201420
</Parameter>
14211421
</Parameters>
14221422
<Docs>
1423-
<param name="format">To be added.</param>
1424-
<param name="arg">To be added.</param>
1425-
<summary>To be added.</summary>
1423+
<param name="format">The formatting string to use.</param>
1424+
<param name="arg">The argument span to output.</param>
1425+
<summary>Writes out a formatted string, using the same semantics as specified.</summary>
14261426
<remarks>To be added.</remarks>
14271427
</Docs>
14281428
</Member>
@@ -2523,9 +2523,9 @@
25232523
</Parameter>
25242524
</Parameters>
25252525
<Docs>
2526-
<param name="format">To be added.</param>
2527-
<param name="arg">To be added.</param>
2528-
<summary>To be added.</summary>
2526+
<param name="format">The formatting string to use.</param>
2527+
<param name="arg">The argument span to output.</param>
2528+
<summary>Writes out a formatted string, followed by a line terminator, using the same semantics as specified.</summary>
25292529
<remarks>To be added.</remarks>
25302530
</Docs>
25312531
</Member>

xml/System.Runtime.InteropServices/NFloat.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,7 @@ This computes `cos(x * π)`.
14351435
<Docs>
14361436
<param name="degrees">The value to convert to radians.</param>
14371437
<summary>Converts a given value from degrees to radians.</summary>
1438-
<returns>The value of <code data-dev-comment-type="paramref">degrees</code> converted to radians.</returns>
1438+
<returns>The value of <see paramref="degrees" /> converted to radians.</returns>
14391439
<remarks>To be added.</remarks>
14401440
<inheritdoc cref="M:System.Numerics.ITrigonometricFunctions`1.DegreesToRadians(`0)" />
14411441
</Docs>
@@ -4980,10 +4980,10 @@ For <xref:System.Numerics.IFloatingPoint%601> this method matches the IEEE 754:2
49804980
</Parameters>
49814981
<Docs>
49824982
<param name="utf8Text">The span of UTF-8 characters to parse.</param>
4983-
<param name="style">A bitwise combination of number styles that can be present in <code data-dev-comment-type="paramref">utf8Text</code>.</param>
4984-
<param name="provider">An object that provides culture-specific formatting information about <code data-dev-comment-type="paramref">utf8Text</code>.</param>
4983+
<param name="style">A bitwise combination of number styles that can be present in <see paramref="utf8Text" />.</param>
4984+
<param name="provider">An object that provides culture-specific formatting information about <see paramref="utf8Text" />.</param>
49854985
<summary>Parses a span of UTF-8 characters into a value.</summary>
4986-
<returns>The result of parsing <code data-dev-comment-type="paramref">utf8Text</code>.</returns>
4986+
<returns>The result of parsing <see paramref="utf8Text" />.</returns>
49874987
<remarks>To be added.</remarks>
49884988
<inheritdoc cref="M:System.Numerics.INumberBase`1.Parse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider)" />
49894989
</Docs>
@@ -5205,7 +5205,7 @@ For <xref:System.Numerics.IFloatingPoint%601> this method matches the IEEE 754:2
52055205
<Docs>
52065206
<param name="radians">The value to convert to degrees.</param>
52075207
<summary>Converts a given value from radians to degrees.</summary>
5208-
<returns>The value of <code data-dev-comment-type="paramref">radians</code> converted to degrees.</returns>
5208+
<returns>The value of <see paramref="radians" /> converted to degrees.</returns>
52095209
<remarks>To be added.</remarks>
52105210
<inheritdoc cref="M:System.Numerics.ITrigonometricFunctions`1.RadiansToDegrees(`0)" />
52115211
</Docs>
@@ -7605,12 +7605,12 @@ This computes `tan(x * π)`.
76057605
</Parameters>
76067606
<Docs>
76077607
<param name="utf8Text">The span of UTF-8 characters to parse.</param>
7608-
<param name="style">A bitwise combination of number styles that can be present in <code data-dev-comment-type="paramref">utf8Text</code>.</param>
7609-
<param name="provider">An object that provides culture-specific formatting information about <code data-dev-comment-type="paramref">utf8Text</code>.</param>
7610-
<param name="result">On return, contains the result of successfully parsing <code data-dev-comment-type="paramref">utf8Text</code> or an undefined value on failure.</param>
7608+
<param name="style">A bitwise combination of number styles that can be present in <see paramref="utf8Text" />.</param>
7609+
<param name="provider">An object that provides culture-specific formatting information about <see paramref="utf8Text" />.</param>
7610+
<param name="result">On return, contains the result of successfully parsing <see paramref="utf8Text" /> or an undefined value on failure.</param>
76117611
<summary>Tries to parse a span of UTF-8 characters into a value.</summary>
76127612
<returns>
7613-
<code data-dev-comment-type="langword">true</code> if <code data-dev-comment-type="paramref">utf8Text</code> was successfully parsed; otherwise, <code data-dev-comment-type="langword">false</code>.</returns>
7613+
<see langword="true" /> if <see paramref="utf8Text" /> was successfully parsed; otherwise, <see langword="false" />.</returns>
76147614
<remarks>To be added.</remarks>
76157615
<inheritdoc cref="M:System.Numerics.INumberBase`1.TryParse(System.ReadOnlySpan{System.Byte},System.Globalization.NumberStyles,System.IFormatProvider,`0@)" />
76167616
</Docs>

0 commit comments

Comments
 (0)