|
1176 | 1176 | <Parameter Name="enumType" Type="System.Type" Index="0" FrameworkAlternate="net-7.0" /> |
1177 | 1177 | </Parameters> |
1178 | 1178 | <Docs> |
1179 | | - <param name="enumType">To be added.</param> |
1180 | | - <summary>To be added.</summary> |
1181 | | - <returns>To be added.</returns> |
1182 | | - <remarks>To be added.</remarks> |
| 1179 | + <param name="enumType">An enumeration type.</param> |
| 1180 | + <summary>Retrieves an array of the values of the underlying type constants in a specified enumeration.</summary> |
| 1181 | + <returns>An array that contains the values of the underlying type constants in <paramref name="enumType" />.</returns> |
| 1182 | + <remarks> |
| 1183 | + You can use this method to get enumeration values when it's hard to create an array of the enumeration type. |
| 1184 | + 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. |
| 1185 | + </remarks> |
| 1186 | + <exception cref="T:System.ArgumentNullException"> |
| 1187 | + <paramref name="enumType" /> is null.</exception> |
| 1188 | + <exception cref="T:System.ArgumentException"> |
| 1189 | + <paramref name="enumType" /> is not an enumeration type.</exception> |
1183 | 1190 | </Docs> |
1184 | 1191 | </Member> |
1185 | 1192 | <Member MemberName="GetValuesAsUnderlyingType<TEnum>"> |
|
1215 | 1222 | </TypeParameters> |
1216 | 1223 | <Parameters /> |
1217 | 1224 | <Docs> |
1218 | | - <typeparam name="TEnum">To be added.</typeparam> |
1219 | | - <summary>To be added.</summary> |
1220 | | - <returns>To be added.</returns> |
1221 | | - <remarks>To be added.</remarks> |
| 1225 | + <typeparam name="TEnum">An enumeration type.</typeparam> |
| 1226 | + <summary>Retrieves an array of the values of the underlying type constants in a specified enumeration type.</summary> |
| 1227 | + <returns>An array that contains the values of the underlying type constants in <typeparamref name="TEnum" />.</returns> |
| 1228 | + <remarks> |
| 1229 | + You can use this method to get enumeration values when it's hard to create an array of the enumeration type. |
| 1230 | + 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. |
| 1231 | + </remarks> |
1222 | 1232 | </Docs> |
1223 | 1233 | </Member> |
1224 | 1234 | <Member MemberName="HasFlag"> |
|
0 commit comments