Skip to content

Document System.Enum #4894

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 22, 2020
Merged
Changes from all commits
Commits
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
29 changes: 15 additions & 14 deletions xml/System/Enum.xml
Original file line number Diff line number Diff line change
Expand Up @@ -701,10 +701,10 @@
<Parameter Name="value" Type="TEnum" Index="0" FrameworkAlternate="net-5.0" />
</Parameters>
<Docs>
<typeparam name="TEnum">To be added.</typeparam>
<param name="value">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<typeparam name="TEnum">The type of the enumeration.</typeparam>
<param name="value">The value of a particular enumerated constant in terms of its underlying type.</param>
<summary>Retrieves the name of the constant in the specified enumeration type that has the specified value.</summary>
<returns>A string containing the name of the enumerated constant in <paramref name="enumType" /> whose value is <paramref name="value" />; or <see langword="null" /> if no such constant is found.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -816,9 +816,9 @@
</TypeParameters>
<Parameters />
<Docs>
<typeparam name="TEnum">To be added.</typeparam>
<summary>To be added.</summary>
<returns>To be added.</returns>
<typeparam name="TEnum">The type of the enumeration.</typeparam>
<summary>Retrieves an array of the names of the constants in a specified enumeration type.</summary>
<returns>A string array of the names of the constants in <typeparamref name="TEnum" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -1064,9 +1064,9 @@
</TypeParameters>
<Parameters />
<Docs>
<typeparam name="TEnum">To be added.</typeparam>
<summary>To be added.</summary>
<returns>To be added.</returns>
<typeparam name="TEnum">The type of the enumeration.</typeparam>
<summary>Retrieves an array of the values of the constants in a specified enumeration type.</summary>
<returns>An array that contains the values of the constants in <typeparamref name="TEnum" />.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down Expand Up @@ -1288,10 +1288,11 @@ thisInstance And flag = flag
<Parameter Name="value" Type="TEnum" Index="0" FrameworkAlternate="net-5.0" />
</Parameters>
<Docs>
<typeparam name="TEnum">To be added.</typeparam>
<param name="value">To be added.</param>
<summary>To be added.</summary>
<returns>To be added.</returns>
<typeparam name="TEnum">The type of the enumeration.</typeparam>
<param name="value">The value or name of a constant in <typeparamref name="TEnum" />.</param>
<summary>Returns a boolean telling whether a given integral value, or its name as a string, exists in a specified enumeration.</summary>
<returns>
<see langword="true" /> if a given integral value, or its name as a string, exists in a specified enumeration; <see langword="false" /> otherwise.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
Expand Down