vote up 1 vote down star

In C# can I cast a variable of type object to a variable of type T where T is defined in a Type variable?

flag

78% accept rate
1  
Not strictly on-topic, but you seem fuzzy enough about what "cast" means that it might be a good idea to understand precisely what the purpose and semantics of the cast operator are. Here's a good start: blogs.msdn.com/ericlippert/archive/… – Eric Lippert Jun 9 at 22:56
Thanks for the blog link. Looks like an interesting read. – theringostarrs Jun 10 at 2:57

4 Answers

vote up 3 vote down check

Putting boxing and unboxing aside for simplicity, there's no specific runtime action involved in casting along the inheritance hierarchy. It's mostly a compile time thing. Essentially, a cast tells the compiler to treat the value of the variable as another type.

What you could do after the cast? You don't know the type, so you wouldn't be able to call any methods on it. There wouldn't be any special thing you could do. Specifically, it can be useful only if you know the possible types at compile time, cast it manually and handle each case separately with if statements:

if (type == typeof(int)) {
    int x = (int)obj;
    DoSomethingWithInt(x);
} else if (type == typeof(string)) {
    string s = (string)obj;
    DoSomethingWithString(s);
} // ...
link|flag
Could you please explain that clearer in relation to my question? – theringostarrs Jun 9 at 21:44
What I'm trying to explain is, what you would be able to do after that? You can't do much as the C# compiler requires static typing to be able to do a useful thing with the object – Mehrdad Afshari Jun 9 at 21:51
You're right. I know the expected types of two variable which are sent to the method as type 'object'. I want to cast to expected types stored in variables, and add them to collection. Much easier to branch on type and attempt a normal cast and catch errors. – theringostarrs Jun 9 at 21:56
2  
Your answer is good, but just to be nit-picky, I note that casts never affect variables. It is never legal to cast a variable to a variable of another type; variable types are invariant in C#. You can only cast the value stored in the variable to another type. – Eric Lippert Jun 9 at 22:58
vote up 1 vote down

How could you do that? You need a variable or field of type T where you can store the object after the cast, but how can you have such a variable or field if you know T only at runtime? So, no, it's not possible.

Type type = GetSomeType();
Object @object = GetSomeObject();

??? xyz = @object.CastTo(type); // How would you declare the variable?

xyz.??? // What methods, properties, or fields are valid here?
link|flag
If youre using a generic class, that defines a method with return value of type T, you could need to do that. E.g. parsing a string to an instance of T and returning that. – BeowulfOF Oct 28 at 6:01
vote up 0 vote down

Sure you can here is both a simple (assume this is a T-type cast) cast and if convenient a (assume we can convert this to a T) convert:

public T CastExamp1<T>(object input) {   
    return (T) input;   
}

public T ConvertExamp1<T>(object input) {
    return (T) Convert.ChangeType(input, typeof(T));
}
link|flag
How do you do this, my c# compiler complains about "return (T) input". – BeowulfOF Oct 27 at 16:08

Your Answer

Get an OpenID
or

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