Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6860461
Add documentation for *TryParse(TryParse(System.String,System.IFormat…
dakersnar Sep 19, 2022
3585a84
Fix parameter documentation for Decimal.Sign
dakersnar Sep 19, 2022
d906a80
Fix documentation for Type.GetEnumValuesAsUnderlyingType and Enum.Get…
dakersnar Sep 19, 2022
22760a7
Fix parameter documentation for UInt128/Int128.CompareTo
dakersnar Sep 19, 2022
363791e
Fix documentation for UInt128/Int128.ToString
dakersnar Sep 19, 2022
b34cd79
Fix documentation for UInt128/Int128.Parse
dakersnar Sep 19, 2022
b36b282
Fix documentation for UInt128/Int128.TryParse
dakersnar Sep 19, 2022
1acafcf
Cleanup
dakersnar Sep 19, 2022
3af9e3f
Apply suggestions from code review
dakersnar Sep 20, 2022
ce60f25
Apply suggestions from code review
dakersnar Sep 20, 2022
faac3ac
Apply suggestions from code review
dakersnar Sep 20, 2022
32a0ad3
Update xml/System/Enum.xml
dakersnar Sep 20, 2022
fc1ca15
Apply suggestions from code review for Type.xml
dakersnar Sep 20, 2022
f70f6e0
Apply suggestions from code review for Int128/UInt128
dakersnar Sep 20, 2022
f73a26d
Apply suggestions from code review for Int128/UInt128
dakersnar Sep 20, 2022
e5275ec
Merge branch 'main' of https://github.com/dotnet/dotnet-api-docs into…
dakersnar Sep 21, 2022
1d7ce76
Fix error with Decimal.Sign param
dakersnar Sep 21, 2022
fa1c65d
Fix documentation for System types
dakersnar Sep 23, 2022
a9459a2
Fix BigInteger.TryParse docs
dakersnar Sep 23, 2022
3c93df1
Fix IBinaryInteger documentation
dakersnar Sep 23, 2022
89937dc
Fix NFloat.TryParse documentation
dakersnar Sep 23, 2022
2cd014b
Fix *.Item documentation issues
dakersnar Sep 23, 2022
893c8cc
Fix 'Tries to parses' typo
dakersnar Sep 23, 2022
5d4041f
Merge branch 'main' of https://github.com/dotnet/dotnet-api-docs into…
dakersnar Sep 23, 2022
f1df7d4
Update xml/System.Numerics/Matrix3x2.xml
dakersnar Sep 26, 2022
6a75b65
Update xml/System.Numerics/Matrix4x4.xml
dakersnar Sep 26, 2022
8e3fd8f
Update xml/System.Numerics/Matrix3x2.xml
dakersnar Sep 26, 2022
ba63bba
Update xml/System.Numerics/Matrix4x4.xml
dakersnar Sep 26, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply suggestions from code review for Type.xml
  • Loading branch information
dakersnar committed Sep 20, 2022
commit fc1ca153fbf8750fbfd9cc825c58cbac1de399d1
10 changes: 5 additions & 5 deletions xml/System/Type.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3156,13 +3156,13 @@ If the current <xref:System.Type> represents a generic type parameter, the <xref
</ReturnValue>
<Parameters />
<Docs>
<summary>Retrieves an array of the values of the underlying type constants in a specified enumeration type.</summary>
<returns>An array that contains the values of the underlying type constants in enumType.</returns>
<summary>Retrieves an array of the values of the underlying type constants of this enumeration type.</summary>
<returns>An array that contains the values of the underlying type constants in this enumeration type.</returns>
<remarks>
This method can be used to get enumeration values when creating an array of the enumeration type is challenging.
For example, <see cref="T:System.Reflection.MetadataLoadContext" /> or on a platform where runtime codegen is not available.
You can use this method to get enumeration values when it's hard to create an array of the enumeration type.
For example, you might use this method for the <see cref="T:System.Reflection.MetadataLoadContext" /> enumeration or on a platform where run-time code generation is not available.
</remarks>
<exception cref="ArgumentException">Thrown when the type is not an enumeration type.</exception>
<exception cref="T:System.ArgumentException">This type is not an enumeration type.</exception>
</Docs>
</Member>
<MemberGroup MemberName="GetEvent">
Expand Down