EnumExtensionsParseT Method (String, T) |
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,
T defaultValue
)
where T : struct, new(), IConvertible
Parameters
- value
- Type: SystemString
The value to parse. - defaultValue
- Type: T
The default value if unable to parse.
Type Parameters
- T
- The enum type.
Return Value
Type:
T[Missing <returns> documentation for "M:Entelect.Extensions.EnumExtensions.Parse``1(System.String,``0)"]
ExceptionsException | Condition |
---|
ArgumentException | T must be an enumerated type |
See Also