Enum.Parse Method (Type, String)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent enumerated object.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Shared Function Parse ( _ enumType As Type, _ value As String _ ) As Object
Parameters
- enumType
- Type: System.Type
An enumeration type.
- value
- Type: System.String
A string containing the name or value to convert.
| Exception | Condition |
|---|---|
| ArgumentNullException | enumType or value is Nothing. |
| ArgumentException | enumType is not an Enum. -or- value is either an empty string or only contains white space. -or- value is a name, but not one of the named constants defined for the enumeration. |
| OverflowException | value is outside the range of the underlying type of enumType. |
The value parameter contains the string representation of an enumeration member's underlying value or named constant, or a list of named constants delimited by commas (,). One or more blank spaces can precede or follow each value, name, or comma in value. If value is a list, the return value is the value of the specified names combined with a bitwise OR operation.
If value is a name that does not correspond to a named constant of enumType, the method throws an ArgumentException. If value is the string representation of an integer that does not represent an underlying value of the enumType enumeration, the method returns an enumeration member whose underlying value is value converted to an integral type. If this behavior is undesirable, call the IsDefined method to ensure that a particular string representation of an integer is actually a member of enumType. The following example defines a Colors enumeration, calls the Parse(Type, String) method to convert strings to their corresponding enumeration values, and calls the IsDefined method to ensure that particular integral values are underlying values in the Colors enumeration.
This operation is case-sensitive.
The following example uses the Parse(Type, String) method to parse an array of strings that are created by calling the GetNames method. It also uses the Parse(Type, String) method to parse an enumeration value that consists of a bit field.
Public Class Example <FlagsAttribute()> _ Enum Colors Red = 1 Green = 2 Blue = 4 Yellow = 8 End Enum Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock) Dim myOrange As Colors = CType([Enum].Parse(GetType(Colors), "Red, Yellow", True), Colors) outputBlock.Text += String.Format("The myOrange value {1} has the combined entries of {0}", myOrange, Convert.ToInt64(myOrange)) & vbCrLf End Sub End Class 'This code example produces the following results: ' 'The myOrange value 9 has the combined entries of Red, Yellow '