Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static class: RT.Util.EnumStrong

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
Parse<T>(string value)
Returns the enum value corresponding to the specified string.
T
Parse<T>(string value, bool ignoreCase)
T?
TryParse<T>(string value)
Finds the enum value corresponding to the specified string.
bool
TryParse<T>(string value, out T result)
T?
TryParse<T>(string value, bool ignoreCase)
bool
TryParse<T>(string value, out T result, bool ignoreCase)