vote up 0 vote down star

I have code like:

var t = SomeInstanceOfSomeClass.GetType();
((t)SomeOtherObjectIWantToCast).someMethodInSomeClass(...);

That won't do, the compiler returns an error about the (t) saying Type or namespace expected. How can you do this?

I'm sure it's actually really obvious....

flag

Why do you want to do with it? Even if you could do that, you wouldn't be able to call methods or other stuff on it as C# is a statically typed language. – Mehrdad Aug 11 at 19:59
Dupe: stackoverflow.com/questions/972636/… – Mehrdad Aug 11 at 20:01

4 Answers

vote up 2 vote down check

C# 4.0 allows this with the dynamic type.

That said, you almost surely don't want to do that unless you're doing COM interop or writing a runtime for a dynamic language. (Jon do you have further use cases?)

link|flag
1  
Yup, a few: Double dispatch made a lot simpler (at the loss of compile-time safety); using operators with generics; making calls to generic methods where the types are only known at execution time a lot simpler. – Jon Skeet Aug 11 at 20:04
dynamic is useful in some other scenarios too, mainly, not just writing a runtime for a dynamic language but interoping with a dynamic environment (IronPython, IronRuby, Javascript, etc). – Mehrdad Aug 11 at 20:09
@Jon - how did you know that you were being summoned?! – Russ Cam Aug 11 at 20:10
Thanks for the input. :) I work more with implementation aspects than use cases for this type of construct. – 280Z28 Aug 11 at 20:13
vote up 0 vote down

In order to cast the way you're describing in your question you have to declare the type at compile time, not run time. That is why you're running into problems.

link|flag
vote up 0 vote down

I've answered a duplicate question here. However, if you just need to call a method on an instance of an arbitrary object in C# 3.0 and below, you can use reflection:

obj.GetType().GetMethod("someMethodInSomeClass").Invoke(obj);
link|flag
vote up 0 vote down
if(t is ThisType) {
    ThisType tt = (ThisType)t;
    /*do something here*/
}else if(t is ThatType) {
    ThatType tt = (ThatType)t;
    /*do something here*/
}

etc.

That's the best you can do in C# 3.5 and lower, really.

link|flag

Your Answer

Get an OpenID
or

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