vote up 2 vote down star

Hi,

Why there is InvalidCastException thrown? Can someone describe me this behavior?

object zero = 0;
decimal? dec = (decimal?)zero;

TIA

flag
Try (decimal?)(decimal)zero; – John Saunders Jul 9 at 13:37
@John Saunders: This is not legal. – Jason Jul 9 at 13:42

2 Answers

vote up 12 vote down check

A boxed int can only be unboxed to an int. This, however, is legal:

object zero = 0;
decimal? dec = (decimal?)(int)zero;

See MSDN or the ECMA 334 C# spec for details. The key here is the following:

Unboxing is an explicit conversion from the type object to a value type or from an interface type to a value type that implements the interface. An unboxing operation consists of:

  1. Checking the object instance to make sure that it is a boxed value of the given value type.
  2. Copying the value from the instance into the value-type variable.

Edit: This linked article is worth pulling out of the comments. Thanks Rob Kennedy!

link|flag
Ok, but why such interim casting is necessary? – Przemaas Jul 9 at 13:39
The first cast (int) unboxes the boxed int to a value type of type int (this is a legal operation). The second cast (decimal?) casts the resulting int to decimal?. – Jason Jul 9 at 13:41
Microsoft (for good reason) never wrote a implicit cast overload for object to decimal. – Michael Meadows Jul 9 at 13:42
1  
@Michael Meadows: This is legal: object zero = 0m; decimal? dec = (decimal)zero; Note the 'm' explicitly telling the compiler that the literal "0" is to be interpreted as a decimal. – Jason Jul 9 at 13:44
3  
Eric Lippert goes into quite some detail about why this works the way it does. The summary: Unboxing to anything but the original type would involve a lot of generated code for all the different possibilities since the compiler doesn't know what the original boxed type is. blogs.msdn.com/ericlippert/archive/… – Rob Kennedy Jul 9 at 14:15
show 3 more comments
vote up 0 vote down

See this article http://msdn.microsoft.com/en-us/magazine/cc301569.aspx

Specifically "The common language runtime first ensures that the reference type variable is not null and that it refers to an object that is a boxed value of the desired value type. If either test fails, then an InvalidCastException exception is generated."

I think you are failing on the object of that value. I think the coversion to int works because that 0 literal will convert to an int and then an int converts to decimal.

If you do this it works

	decimal? test=0;
	object zero = test;
	decimal? dec = (decimal?)zero;

But I think the "0" in your snippet is not a "decimal" type.

I am still not positive cause this gets the same exception.

        int test=0;
    	object zero = test;
    	decimal? dec = (decimal?)zero;
link|flag
My problem originally comes from below method: public TResult Convert(object value) { try { return (TResult)value; } catch (InvalidCastException) { return default(TResult); } } This method returns null when called: Convert<decimal?>(0); I cann't make any assumptions about TResult and I don't know what exactly comes as an argument. That is why I cannot use Convert.To...() goodies. – Przemaas Jul 9 at 14:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.