Summary
Provides generic versions of some of the static methods of the
Enum class.
Static methods
| T[] | |
Returns the set of enum values from the specified enum type. |
| T | |
Returns the enum value corresponding to the specified string. |
| T | Parse<T>(string value, bool ignoreCase) |
| T? | |
Finds the enum value corresponding to the specified string. |
| bool | |
| T? | TryParse<T>(string value, bool ignoreCase) |
| bool | TryParse<T>(string value, out T result, bool ignoreCase) |