Enum::ToObject Method (Type^, Int16)
Converts the specified 16-bit signed integer to an enumeration member.
Assembly: mscorlib (in mscorlib.dll)
public: [ComVisibleAttribute(true)] static Object^ ToObject( Type^ enumType, short value )
Parameters
- enumType
-
Type:
System::Type^
The enumeration type to return.
- value
-
Type:
System::Int16
The value to convert to an enumeration member.
| Exception | Condition |
|---|---|
| ArgumentNullException | enumType is null. |
| ArgumentException | enumType is not an Enum. |
The ToObject(Type^, Int16) method converts 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.
Available since 1.1