Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Anders Hejlsberg's C# 4.0 REPL

Is there a native window/extension in VS2010 where you can write one-liners and see the result( like the 'Immediate Window', witch, as far as I know, is only usable in Debug mode).

I'm not interested in external tools like Linq Pad or SnippetCompiler

share|improve this question
1  
I've voted to close as a duplicate because it's a long-standing question whose answer, I believe is still ultimately the same. Incidentally - the comment from 2011 on the question itself there, pointing to Roslyn, is prescient - because MS are in the process rearchitecting and unifying the whole compilation stack and part of that could yield a C# REPL window (I believe Roslyn does include one) – Andras Zoltan Aug 3 '12 at 8:58
1  
check out stackoverflow.com/a/760475/999042. Anyway, being "not interested" in perfectly functional external tools is illogic. – Alex Aug 3 '12 at 9:03

marked as duplicate by Andras Zoltan, Oliver, jadarnel27, Guvante, Graviton Aug 10 '12 at 10:49

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 6 down vote accepted

With Roslyn, Visual Studio will get a built in interactive window:

http://blog.filipekberg.se/2011/11/14/using-the-c-interactive-window-that-comes-with-roslyn/

Unfortunately, it is still only at CTP status.

share|improve this answer
1  
+1; also see blogs.msdn.com/b/csharpfaq/archive/2012/01/30/… – phoog Aug 3 '12 at 8:57
+1 I use this all the time, and it works great for most situations. – Michael Graczyk Aug 3 '12 at 8:59
1  
Waw !! I didn't know that, it's a pretty cool stuuff ! – ykatchou Aug 3 '12 at 9:14

Maybe the IronPython interactive console (inside visual studio) could do the work. But it's not a straight answer :/

http://ironpython.net/

share|improve this answer

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