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^, UInt32)
.NET Framework (current version)
Converts the specified 32-bit unsigned integer value to an enumeration member.
This API is not CLS-compliant.
Assembly: mscorlib (in mscorlib.dll)
public: [CLSCompliantAttribute(false)] [ComVisibleAttribute(true)] static Object^ ToObject( Type^ enumType, unsigned int value )
Parameters
- enumType
-
Type:
System::Type^
The enumeration type to return.
- value
-
Type:
System::UInt32
The value to convert to an enumeration member.
| Exception | Condition |
|---|---|
| ArgumentNullException | enumType is null. |
| ArgumentException | enumType is not an Enum. |
The ToObject(Type^, UInt32) 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: