InvalidCastException is thrown if:
For a conversion from a Single or a Double to a Decimal, the source value is infinity, Not-a-Number (NaN), or too large to be represented as the destination type.
A failure occurs during an explicit reference conversion.
For an explicit reference conversion to be successful, the source value must be nullNothingnullptra null reference (Nothing in Visual Basic), or the object type referenced by the source argument must be convertible to the destination type by an implicit reference conversion.
For information on conversions supported by the system, see the Convert class. For errors that occur when the destination type can store source type values, but is not large enough to store a specific source value, see OverflowException exception.
The following Microsoft intermediate language (MSIL) instructions throw InvalidCastException
castclass
refanyval
unbox
InvalidCastException uses the HRESULT COR_E_INVALIDCAST, which has the value 0x80004002.
For a list of initial property values for an instance of InvalidCastException, see the InvalidCastException constructors.