Is there (there has to be!) a way to print to the immediate window like VB's debug.print statement?

Also, in VB you could breakpoint then type (in the immediate window) a function and it would print the function's output, like now(). In C# it will print properties, but won't execute functions. Why?

IE
>? string.length
10
>? string.ToStrin()
error