Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static method: bool TryParse<T>(string, out T)

Declaration

public static bool TryParse<T>(
    string value,
    out T result
)

Summary

Finds the enum value corresponding to the specified string.

Generic type parameters

T
  • Must derive from: System.ValueType.
  • Must have a default constructor.
  • Must be a non-nullable value type.
The enum type from which to retrieve the value.

Parameters

stringvalueA string containing the name or value to convert.
out TresultVariable receiving the converted value.

Returns

True if the value was successfully converted; false otherwise.