Click or drag to resize
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.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public 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)"]

Exceptions
ExceptionCondition
ArgumentExceptionT must be an enumerated type
See Also