While looking at the System.Type class under the Code Definition Window, I cannot seem to understand how an instance of this class is implicitly cast to string. For example, on the following code:

int foo = 0;
Console.WriteLine("Hi! I'm a type of type {0}", foo.GetType());

How was the System.Type resulting from GetType() implicitly cast to string?

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

It's not being implicitly cast to string. It's being converted to Object (with the standard implicit reference conversion), and String.Format is formatting it appropriately - by calling ToString in this case.

This is not being done at compile-time. The code you've shown calls the Console.WriteLine(string, object) overload.

link|improve this answer
Love the Tony reference – johnc Nov 8 '09 at 22:52
@lagerdalek: I think I'm going to retire Tony some time this week, and go back to being me. – Jon Skeet Nov 8 '09 at 22:53
Duh, yeah it's calling one of the overloaded WriteLine() methods. Thanks for pointing that out. Missed that, I read it as Console.WriteLine("blablah"+foo.GetType()); Now, we would prolly get a compile error there...hmm. – Wim Hollebrandse Nov 8 '09 at 22:56
No, we wouldn't - because of the way string concatenation works. That's a different question though :) – Jon Skeet Nov 8 '09 at 22:57
Exactly, but it's the question I was reading! :-) – Wim Hollebrandse Nov 8 '09 at 22:58
show 1 more comment
feedback

My guess is that this is just calling the ToString()-Method, or another (if defined by the type) conversion method.

link|improve this answer
ToString() does not necesarilly gets called automatically for every class – Carlos Muñoz Nov 8 '09 at 22:51
feedback

Your Answer

 
or
required, but never shown

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