Is there a way to use the C# interactive shell window (from the Roslyn CTP) outside of VS? Or is there something similar to it that is available?

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

Right now, the interactive window only works inside Visual Studio. Roslyn exposes a scripting API which the interactive window uses, so you really want an interactive window running somewhere else, feel free to write it!

link|improve this answer
feedback

To be clear, the C# Interactive window uses several Visual Studio components (such as the VS Editor), so it cannot be hosted outside of VS. As Jason Malinowski said, you can create a quick-and-dirty Interactive window outside of VS pretty easily using the Roslyn Scripting APIs. Also, if you're looking to evaluate code outside of VS, you can create a C# Script file (.csx), add top-level code just as you can in the Interactive window, and run it with the rcsi.exe binary that ships with the Roslyn CTP.

link|improve this answer
feedback

Here is a quick Example, pretty minimal though. Don't support blocks {}

http://www.amazedsaint.com/2011/10/c-vnext-roslynan-introduction-and-quick.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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