The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
Enum::ToObject Method (Type^, Int64)
.NET Framework (current version)
Converts the specified 64-bit signed integer to an enumeration member.
Assembly: mscorlib (in mscorlib.dll)
public: [ComVisibleAttribute(true)] static Object^ ToObject( Type^ enumType, long long value )
Parameters
- enumType
-
Type:
System::Type^
The enumeration type to return.
- value
-
Type:
System::Int64
The value to convert to an enumeration member.
| Exception | Condition |
|---|---|
| ArgumentNullException | enumType is null. |
| ArgumentException | enumType is not an Enum. |
The ToObject(Type^, Int64) 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.
.NET Framework
Available since 1.1
Available since 1.1
Show: