Enum.ToObject Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Returns an instance of the specified enumeration set to the specified value.

Namespace:  System
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
<ComVisibleAttribute(True)> _
Public Shared Function ToObject ( _
    enumType As Type, _
    value As Object _
) As Object
[ComVisibleAttribute(true)]
public static Object ToObject(
    Type enumType,
    Object value
)

Parameters

Return Value

Type: System.Object
An enumeration object whose value is value.

Exceptions

Exception Condition
ArgumentNullException

enumType or value is nulla null reference (Nothing in Visual Basic).

ArgumentException

enumType is not an Enum.

-or-

value is not type SByte, Int16, Int32, Int64, Byte, UInt16, UInt32, or UInt64.

Remarks

The ToObject(Type, Object) method converts the integral value value to an enumeration member whose underlying value is value. Note that the conversion succeeds even if value is outside the bounds of enumType members. To ensure that value is a valid underlying value of the enumType enumeration, pass it to the IsDefined method.

This conversion method returns a value of type Object. You can then cast it or convert it to an object of type enumType.

Version Information

Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

Platforms

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

See Also

Reference