Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I open the C# interactive REPL (as released in Roslyn) outside Visual Studio?

Analogous for F# is C:\Program Files (x86)\Microsoft F#\v4.0\Fsi.exe . Where is csi.exe ?


Answer: No, alas. http://stackoverflow.com/a/7840758/284795

share|improve this question
I thought that was one of the samples ... at the very least, Anders created a Console based REPL in the very first Roslyn presentation available online. If you can find the presentation, the code is very simple, you can write it easily based on that. – Richard Hein Jul 21 '12 at 11:26
There is one now :) as you can see by my answer below – Dinis Cruz Aug 3 '12 at 3:52

3 Answers

up vote 3 down vote accepted

The only executable I found is C:\Program Files (x86)\Microsoft Codename Roslyn CTP\Binaries\rcsi.exe, which can execute .csx files. But it doesn't seem to actually support REPL.

share|improve this answer
Same for me (new CTP) only C:\Program Files (x86)\Microsoft Roslyn CTP\Binaries\rcsi.exe – Colonel Panic Jun 11 '12 at 13:34

I created exactly what you are asking for, a Roslyn based REPL running outside VisualStudio.

You can download it from PoC - Roslyn C# ScriptEngine Execute v1.0.exe which is a stand-alone exe containing all Roslyn assemblies as embedded resources. See also Video: Using O2's Roslyn-based C# REPL Script environment

Note that I have developed a more powerful C# REPL for the O2 Platform, which you can see and download from C# REPL Script Environment

On the topic of Roslyn, here are a number of other stand-alone tools that I created:

Note that all these tools and the O2 Platform are released under an Open Source license, so please fell free to expand and make them better :)

share|improve this answer

Anders Hejlsberg builds a C# REPL loop in this video, 65 minutes in:

http://channel9.msdn.com/Events/PDC/PDC08/TL16#time=65m00s

It's a much older version of Roslyn, but the same ideas apply (and eval! ;).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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