Enum.ToObject Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns an instance of the specified enumeration set to the specified value.
Assembly: mscorlib (in mscorlib.dll)
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.