I have a class declared as such:

public abstract class CrmAttribute <T> : ICrmAttribute
{

}

And in one of the methods further down I have this

castedValue = (T)value;

castedValue is then used in other methods of type T as a parameter.

My problem is a case has come up such that the above cast throws an InvalidCastException.

From what I can tell this is one specific case; In Dynamics 2011 Microsoft finally moved away from custom types like CRMNumber and moved to inherent .Net types but not for all cases. Of the ones that remain, is a complex Money type that has one property of .Value which contains a decimal. This is where my Exception is thrown as I cannot cast a decimal to a Money type. Even though a Money object is essentially a Decimal.

I'm still fairly new to generics and much of this is inherited code so I'm well aware the correct response is to not do this per se, But all I want to do is to be able to create my own implicit cast of type Money to Decimal so that the line using T will cast correctly.

Is this possible?

link|improve this question

80% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Your best bet is to add code to your class around the cast to test if T is the problematic type and perform the appropriate conversion instead of relying on cast.

Perhaps something like this:

if (typeof(Money).IsAssignableFrom(typeof(T))
{
    // special handling required to convert decimal to money
    castedValue = new Money() { Value = value };  // ? best guess
}
else
{
    castedValue =(T)value;
}
link|improve this answer
I did try something like this but it wouldn't compile on the line if(T is Money) the error being 'T' is a 'type parameter' but is used like a 'variable' and I wasn't sure how to circumnavigate this as I'm still clueing myself up on generics. – Chris Dec 12 '11 at 18:31
1  
T is a type parameter, and so you cannot use an instance operator on it like is. For the same reason, you cannot write DateTime is object - it doesn't make any sense. The way to compare two types is by using the Type class that represents them. You can an instance of the Type class by either using typeof(T) or myInstanceOfT.GetType(). The former is for compile-time known types (such as with generics) while the latter is for run-time known types. So just use if (typeof(T) == typeof(Money)). – Allon Guralnek Dec 12 '11 at 19:07
@AllonGuralnek careful: If Money is unsealed, and the object might be an instance of the derived class, testing for type equality will not work. – phoog Dec 12 '11 at 20:13
Updated pseudocode to use typeof().IsAssignableFrom() instead of IS – dthorpe Dec 12 '11 at 20:48
The comment about unsealed types seems wrong to me. If T is derived from Money, you cannot assign a reference to a plain Money object to T. If T is a base class of Money, you don't want any special behaviour (considering that object is a base class of Money). So it really should be a check for type equality. – hvd Dec 12 '11 at 21:03
show 3 more comments
feedback

It should be desired behavior that you cannot cast a decimal to a money type, due to the existance of multiple different currencies.

You cannot add an implicit cast to another type, unless it's declared in the type itself. You will have to do some explicit casting.

link|improve this answer
I realise it's not desired behaviour, but at the stage of the application it's built in the value is the important part. I would do explicit casting but as with the other answer, I'm unsure how to especially as other methods later on take castedValue as type T and when explicitly cast away from T to Money I get errors once more. – Chris Dec 12 '11 at 18:33
feedback

Couldn't you do the following:

public partial class Money
{
    public static implicit operator Money(decimal d)
    {
    // do whatever code in here you want to change your decimal into the money type
    }
}

I'm not claiming this is a good idea, but if Money isn't a value type and isn't sealed this should be possible.

link|improve this answer
2  
A partial class enables a class definition to span multiple source files, not multiple assemblies. You cannot extend a class in such a way unless you have all parts of the partial class in a single project, which he doesn’t since Money is a Microsoft-supplied class. – Allon Guralnek Dec 12 '11 at 19:02
feedback

Your Answer

 
or
required, but never shown

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