Does anyone know if there is a c# Console app, similar to the Python or Ruby console? I know the whole "Compiled versus Interpreted" difference, but with C#'s reflection power I think it could be done.

UPDATE Well, it only took about 200 lines, but I wrote a simple one...It works a lot like osql. You enter commands and then run them with go.

SharpConsole

If anyone wants it, let me know.

link|improve this question

51% accept rate
2  
Awesome! Where could one download your console?? – everwicked Feb 28 '11 at 13:57
2  
The image is broken. – Nullable Jul 2 '11 at 1:44
I'd like to try your app/solution as well. Any thought to releasing/sharing the app and or its source code? Perhaps host on GitHub, SourceForge, or CodePlex. I assume it would be easy to compile from source as it's only 200 lines. – David Mar 2 at 22:58
feedback

7 Answers

up vote 16 down vote accepted

Given your mention of "C#'s reflection power", I am unsure whether you're looking for an interactive C# console for small code snippets of your own (à la Ruby's irb), or a means of interacting with an existing, compiled application currently running as a process.

In the former case:

  • Windows PowerShell might be your friend
  • Another candidate would be the C# shell
  • Finally, CSI, a Simple C# Interpreter
link|improve this answer
That C# shell isn't a shell at all. It does takes your shebang prefixed "script" and wraps it up in Main(){} – Mark Jan 17 at 6:54
Powershell isn't ideal if you don't want the hassle to learn and use a new scripting/coding syntax. It's different from C#. Wish Powershell was more like Beanshell is to Java. – David Mar 2 at 23:01
feedback

Found this on reddit: http://tirania.org/blog/archive/2008/Sep-08.html

Quote from the site:

The idea was simple: create an interactive C# shell by altering the compiler to generate and execute code dynamically as opposed to merely generating static code.

link|improve this answer
feedback

I am not sure what you are looking for this application to accomplish. If it is just to try some code without having to create a project and all the overhead to just test an idea, then SnippetCompiler could be a good fit.

I just wanted to give you another option.

link|improve this answer
Not as quick and easy as script interpreters, but by far the most useful that I've tried. Nice to be able to easily add a bunch of references to my libraries. Thanks Dale! – Jason Mar 4 '10 at 17:51
feedback

If you don't have to use the console, and just want a place to test some ad hoc C# snippets, then LinqPad is a good option. I find it very cool/easy to use.

link|improve this answer
This is a great tool for the job, thanks! I had it already but had never tried it just to run code. It's nice because it also runs VB, and can run expressions or statements, as well as obviously execute LINQ2SQL against a live database, and run regular SQL queries. – gregmac Feb 16 '11 at 22:02
feedback

It appears Miguel De Icaza was stalking me:

http://tirania.org/blog/archive/2008/Sep-08.html

link|improve this answer
feedback

Google reveals a few efforts at this. One in particular illustrates why this is less straightforward than it might seem. http://www.codeproject.com/KB/cs/csi.aspx has a basic interpreter using .NET's built in ability to compile c# code. A key problem is that the author's approach creates a new mini .NET assembly for each interpreted line. C# may have the reflective power to have a python or ruby style console, but the .NET framework libraries are geared toward compiling C#, not dynamically interpreting it. If you are serious about this, you may want to look at http://www.paxscript.net/, which seems like a genuine attempt at interpreted C#.

link|improve this answer
feedback

I believe you are looking for Snippy =)

Snippy Screenshot

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.