EnumExtensionsToEnumT Method |
Namespace:
Xcalibur.Extensions
Assembly:
Xcalibur.Extensions (in Xcalibur.Extensions.dll) Version: 1.0.4.0 (1.0.0.0)
Syntax public static T ToEnum<T>(
this string str
)
where T : struct, new(), IConvertible
<ExtensionAttribute>
Public Shared Function ToEnum(Of T As {Structure, New, IConvertible}) (
str As String
) As T
public:
[ExtensionAttribute]
generic<typename T>
where T : value class, gcnew(), IConvertible
static T ToEnum(
String^ str
)
[<ExtensionAttribute>]
static member ToEnum :
str : string -> 'T when 'T : struct, new() and IConvertible
Parameters
- str
- Type: SystemString
string representing the enum
Type Parameters
- T
- The type of Enum
Return Value
Type:
TEnum value corresponding to the string value
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
Exceptions Examples 1
2
3
4public enum ThreadStateType
5{
6 [Description("Initialized")]
7 Started = 0,
8
9 [Description("Ready")]
10 Waiting = 1,
11
12 [Description("Running")]
13 Processor = 2,
14
15 [Description("Standby")]
16 PreProcessor = 3,
17
18 [Description("Terminated")]
19 Ended = 4,
20
21 [Description("Wait")]
22 NotReady = 5,
23
24 [Description("Transition")]
25 WaitingForResource = 6,
26
27 [Description("Unknown")]
28 UndeterminedState = 7
29}
30
31
32
33
34public void ToEnumTest()
35{
36
37 ThreadStateType myType = ("Processor").ToEnum<ThreadStateType>();
38
39
40}
See Also