EnumExtensionsParseT Method (String) |
Takes in a string and parses it to the provided enum
Adapted from http://stackoverflow.com/questions/79126/create-generic-method-constraining-t-to-an-enum
Namespace: Entelect.ExtensionsAssembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntaxpublic static T Parse<T>(
string value
)
where T : struct, new(), IConvertible
Parameters
- value
- Type: SystemString
The value to parse.
Type Parameters
- T
- The enum type.
Return Value
Type:
T[Missing <returns> documentation for "M:Entelect.Extensions.EnumExtensions.Parse``1(System.String)"]
ExceptionsException | Condition |
---|
ArgumentException | T must be an enumerated type |
See Also