|
415 | 415 | <Parameter Name="value" Type="System.IntPtr" Index="0" FrameworkAlternate="net-5.0" />
|
416 | 416 | </Parameters>
|
417 | 417 | <Docs>
|
418 |
| - <param name="value">To be added.</param> |
| 418 | + <param name="value">A signed native integer to compare.</param> |
419 | 419 | <summary>Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.</summary>
|
420 | 420 | <returns>A value that indicates the relative order of the objects being compared. The return value has these meanings:
|
421 | 421 | <list type="table"><listheader><term> Value
|
|
458 | 458 | <Parameter Name="value" Type="System.Object" Index="0" FrameworkAlternate="net-5.0" />
|
459 | 459 | </Parameters>
|
460 | 460 | <Docs>
|
461 |
| - <param name="value">To be added.</param> |
| 461 | + <param name="value">An object to compare, or <see langword="null" />.</param> |
462 | 462 | <summary>Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.</summary>
|
463 | 463 | <returns>A value that indicates the relative order of the objects being compared. The return value has these meanings:
|
464 | 464 | <list type="table"><listheader><term> Value
|
|
632 | 632 | <ReturnType>System.IntPtr</ReturnType>
|
633 | 633 | </ReturnValue>
|
634 | 634 | <Docs>
|
635 |
| - <summary>To be added.</summary> |
| 635 | + <summary>Represents the largest possible value of <see cref="T:System.IntPtr" />.</summary> |
636 | 636 | <value>To be added.</value>
|
637 | 637 | <remarks>To be added.</remarks>
|
638 | 638 | </Docs>
|
|
659 | 659 | <ReturnType>System.IntPtr</ReturnType>
|
660 | 660 | </ReturnValue>
|
661 | 661 | <Docs>
|
662 |
| - <summary>To be added.</summary> |
| 662 | + <summary>Represents the smallest possible value of <see cref="T:System.IntPtr" />.</summary> |
663 | 663 | <value>To be added.</value>
|
664 | 664 | <remarks>To be added.</remarks>
|
665 | 665 | </Docs>
|
|
1326 | 1326 | <Parameter Name="s" Type="System.String" Index="0" FrameworkAlternate="net-5.0" />
|
1327 | 1327 | </Parameters>
|
1328 | 1328 | <Docs>
|
1329 |
| - <param name="s">To be added.</param> |
1330 |
| - <summary>To be added.</summary> |
1331 |
| - <returns>To be added.</returns> |
| 1329 | + <param name="s">A string containing a number to convert.</param> |
| 1330 | + <summary>Converts the string representation of a number to its signed native integer equivalent.</summary> |
| 1331 | + <returns>A signed native integer equivalent to the number contained in <paramref name="s" />.</returns> |
1332 | 1332 | <remarks>To be added.</remarks>
|
| 1333 | + <exception cref="T:System.ArgumentNullException"> |
| 1334 | + <paramref name="s" /> is <see langword="null" />.</exception> |
| 1335 | + <exception cref="T:System.FormatException"> |
| 1336 | + <paramref name="s" /> is not in the correct format.</exception> |
| 1337 | + <exception cref="T:System.OverflowException"> |
| 1338 | + <paramref name="s" /> represents a number less than <see cref="P:System.IntPtr.MinValue" /> or greater than <see cref="P:System.IntPtr.MaxValue" />.</exception> |
1333 | 1339 | </Docs>
|
1334 | 1340 | </Member>
|
1335 | 1341 | <Member MemberName="Parse">
|
|
1358 | 1364 | <Parameter Name="style" Type="System.Globalization.NumberStyles" Index="1" FrameworkAlternate="net-5.0" />
|
1359 | 1365 | </Parameters>
|
1360 | 1366 | <Docs>
|
1361 |
| - <param name="s">To be added.</param> |
1362 |
| - <param name="style">To be added.</param> |
1363 |
| - <summary>To be added.</summary> |
1364 |
| - <returns>To be added.</returns> |
| 1367 | + <param name="s">A string containing a number to convert.</param> |
| 1368 | + <param name="style">A bitwise combination of the enumeration values that indicates the style elements that can be present in <paramref name="s" />.</param> |
| 1369 | + <summary>Converts the string representation of a number in a specified style to its signed native integer equivalent.</summary> |
| 1370 | + <returns>A signed native integer equivalent to the number contained in <paramref name="s" />.</returns> |
1365 | 1371 | <remarks>To be added.</remarks>
|
| 1372 | + <exception cref="T:System.ArgumentNullException"> |
| 1373 | + <paramref name="s" /> is <see langword="null" />.</exception> |
| 1374 | + <exception cref="T:System.ArgumentException"> |
| 1375 | + <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value or <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values.</exception> |
| 1376 | + <exception cref="T:System.FormatException"> |
| 1377 | + <paramref name="s" /> is not in the correct format.</exception> |
| 1378 | + <exception cref="T:System.OverflowException"> |
| 1379 | + <paramref name="s" /> represents a number less than <see cref="P:System.IntPtr.MinValue" /> or greater than <see cref="P:System.IntPtr.MaxValue" />.</exception> |
1366 | 1380 | </Docs>
|
1367 | 1381 | </Member>
|
1368 | 1382 | <Member MemberName="Parse">
|
|
1391 | 1405 | <Parameter Name="provider" Type="System.IFormatProvider" Index="1" FrameworkAlternate="net-5.0" />
|
1392 | 1406 | </Parameters>
|
1393 | 1407 | <Docs>
|
1394 |
| - <param name="s">To be added.</param> |
1395 |
| - <param name="provider">To be added.</param> |
1396 |
| - <summary>To be added.</summary> |
1397 |
| - <returns>To be added.</returns> |
| 1408 | + <param name="s">A string containing a number to convert.</param> |
| 1409 | + <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param> |
| 1410 | + <summary>Converts the string representation of a number in a specified culture-specific format to its signed native integer equivalent.</summary> |
| 1411 | + <returns>A signed native integer equivalent to the number contained in <paramref name="s" />.</returns> |
1398 | 1412 | <remarks>To be added.</remarks>
|
| 1413 | + <exception cref="T:System.ArgumentNullException"> |
| 1414 | + <paramref name="s" /> is <see langword="null" />.</exception> |
| 1415 | + <exception cref="T:System.FormatException"> |
| 1416 | + <paramref name="s" /> is not in the correct format.</exception> |
| 1417 | + <exception cref="T:System.OverflowException"> |
| 1418 | + <paramref name="s" /> represents a number less than <see cref="P:System.IntPtr.MinValue" /> or greater than <see cref="P:System.IntPtr.MaxValue" />.</exception> |
1399 | 1419 | </Docs>
|
1400 | 1420 | </Member>
|
1401 | 1421 | <Member MemberName="Parse">
|
|
1425 | 1445 | <Parameter Name="provider" Type="System.IFormatProvider" Index="2" FrameworkAlternate="net-5.0" />
|
1426 | 1446 | </Parameters>
|
1427 | 1447 | <Docs>
|
1428 |
| - <param name="s">To be added.</param> |
1429 |
| - <param name="style">To be added.</param> |
1430 |
| - <param name="provider">To be added.</param> |
1431 |
| - <summary>To be added.</summary> |
1432 |
| - <returns>To be added.</returns> |
| 1448 | + <param name="s">A string containing a number to convert.</param> |
| 1449 | + <param name="style">A bitwise combination of the enumeration values that indicates the style elements that can be present in <paramref name="s" />.</param> |
| 1450 | + <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param> |
| 1451 | + <summary>Converts the string representation of a number in a specified style and culture-specific format to its signed native integer equivalent.</summary> |
| 1452 | + <returns>A signed native integer equivalent to the number contained in <paramref name="s" />.</returns> |
1433 | 1453 | <remarks>To be added.</remarks>
|
| 1454 | + <exception cref="T:System.ArgumentNullException"> |
| 1455 | + <paramref name="s" /> is <see langword="null" />.</exception> |
| 1456 | + <exception cref="T:System.ArgumentException"> |
| 1457 | + <paramref name="style" /> is not a <see cref="T:System.Globalization.NumberStyles" /> value or <paramref name="style" /> is not a combination of <see cref="F:System.Globalization.NumberStyles.AllowHexSpecifier" /> and <see cref="F:System.Globalization.NumberStyles.HexNumber" /> values.</exception> |
| 1458 | + <exception cref="T:System.FormatException"> |
| 1459 | + <paramref name="s" /> is not in the correct format.</exception> |
| 1460 | + <exception cref="T:System.OverflowException"> |
| 1461 | + <paramref name="s" /> represents a number less than <see cref="P:System.IntPtr.MinValue" /> or greater than <see cref="P:System.IntPtr.MaxValue" />.</exception> |
1434 | 1462 | </Docs>
|
1435 | 1463 | </Member>
|
1436 | 1464 | <Member MemberName="Size">
|
@@ -1946,9 +1974,9 @@ This member is an explicit interface member implementation. It can be used only
|
1946 | 1974 | <Parameter Name="provider" Type="System.IFormatProvider" Index="0" FrameworkAlternate="net-5.0" />
|
1947 | 1975 | </Parameters>
|
1948 | 1976 | <Docs>
|
1949 |
| - <param name="provider">To be added.</param> |
1950 |
| - <summary>To be added.</summary> |
1951 |
| - <returns>To be added.</returns> |
| 1977 | + <param name="provider">An object that supplies culture-specific formatting information.</param> |
| 1978 | + <summary>Converts the numeric value of this instance to its equivalent string representation using the specified format and culture-specific format information.</summary> |
| 1979 | + <returns>The string representation of the value of this instance as specified by <paramref name="provider" />.</returns> |
1952 | 1980 | <remarks>To be added.</remarks>
|
1953 | 1981 | </Docs>
|
1954 | 1982 | </Member>
|
@@ -2013,6 +2041,8 @@ This member is an explicit interface member implementation. It can be used only
|
2013 | 2041 | <related type="Article" href="/dotnet/standard/base-types/standard-numeric-format-strings">Standard Numeric Format Strings</related>
|
2014 | 2042 | <related type="Article" href="/dotnet/standard/base-types/custom-numeric-format-strings">Custom Numeric Format Strings</related>
|
2015 | 2043 | <related type="Article" href="/dotnet/standard/base-types/formatting-types">Formatting Types in .NET</related>
|
| 2044 | + <exception cref="T:System.FormatException"> |
| 2045 | + <paramref name="format" /> is invalid or not supported.</exception> |
2016 | 2046 | </Docs>
|
2017 | 2047 | </Member>
|
2018 | 2048 | <Member MemberName="ToString">
|
@@ -2047,7 +2077,7 @@ This member is an explicit interface member implementation. It can be used only
|
2047 | 2077 | <param name="format">The format to use.
|
2048 | 2078 | -or-
|
2049 | 2079 | A <see langword="null" /> reference (<see langword="Nothing" /> in Visual Basic) to use the default format defined for the type of the <see cref="T:System.IFormattable" /> implementation.</param>
|
2050 |
| - <param name="provider">To be added.</param> |
| 2080 | + <param name="provider">An object that supplies culture-specific formatting information.</param> |
2051 | 2081 | <summary>Formats the value of the current instance using the specified format.</summary>
|
2052 | 2082 | <returns>The value of the current instance in the specified format.</returns>
|
2053 | 2083 | <remarks>To be added.</remarks>
|
@@ -2079,10 +2109,11 @@ This member is an explicit interface member implementation. It can be used only
|
2079 | 2109 | <Parameter Name="result" Type="System.IntPtr" RefType="out" Index="1" FrameworkAlternate="net-5.0" />
|
2080 | 2110 | </Parameters>
|
2081 | 2111 | <Docs>
|
2082 |
| - <param name="s">To be added.</param> |
2083 |
| - <param name="result">To be added.</param> |
2084 |
| - <summary>To be added.</summary> |
2085 |
| - <returns>To be added.</returns> |
| 2112 | + <param name="s">A string containing a number to convert.</param> |
| 2113 | + <param name="result">When this method returns, contains the signed native integer value equivalent of the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is <see langword="null" /> or Empty, is not of the correct format, or represents a number less than <see cref="P:System.IntPtr.MinValue" /> or greater than <see cref="P:System.IntPtr.MaxValue" />. This parameter is passed uninitialized; any value originally supplied in result will be overwritten.</param> |
| 2114 | + <summary>Converts the string representation of a number to its signed native integer equivalent. A return value indicates whether the conversion succeeded.</summary> |
| 2115 | + <returns> |
| 2116 | + <see langword="true" /> if <paramref name="s" /> was converted successfully; otherwise, <see langword="false" />.</returns> |
2086 | 2117 | <remarks>To be added.</remarks>
|
2087 | 2118 | </Docs>
|
2088 | 2119 | </Member>
|
@@ -2114,12 +2145,13 @@ This member is an explicit interface member implementation. It can be used only
|
2114 | 2145 | <Parameter Name="result" Type="System.IntPtr" RefType="out" Index="3" FrameworkAlternate="net-5.0" />
|
2115 | 2146 | </Parameters>
|
2116 | 2147 | <Docs>
|
2117 |
| - <param name="s">To be added.</param> |
2118 |
| - <param name="style">To be added.</param> |
2119 |
| - <param name="provider">To be added.</param> |
2120 |
| - <param name="result">To be added.</param> |
2121 |
| - <summary>To be added.</summary> |
2122 |
| - <returns>To be added.</returns> |
| 2148 | + <param name="s">A string containing a number to convert. The string is interpreted using the style specified by <paramref name="style" />.</param> |
| 2149 | + <param name="style">A bitwise combination of enumeration values that indicates the style elements that can be present in <paramref name="s" />.</param> |
| 2150 | + <param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param> |
| 2151 | + <param name="result">When this method returns, contains the signed native integer value equivalent of the number contained in <paramref name="s" />, if the conversion succeeded, or zero if the conversion failed. The conversion fails if the <paramref name="s" /> parameter is <see langword="null" /> or Empty, is not of the correct format, or represents a number less than <see cref="P:System.IntPtr.MinValue" /> or greater than <see cref="P:System.IntPtr.MaxValue" />. This parameter is passed uninitialized; any value originally supplied in result will be overwritten.</param> |
| 2152 | + <summary>Converts the string representation of a number in a specified style and culture-specific format to its signed native integer equivalent. A return value indicates whether the conversion succeeded.</summary> |
| 2153 | + <returns> |
| 2154 | + <see langword="true" /> if <paramref name="s" /> was converted successfully; otherwise, <see langword="false" />.</returns> |
2123 | 2155 | <remarks>To be added.</remarks>
|
2124 | 2156 | </Docs>
|
2125 | 2157 | </Member>
|
|
0 commit comments