C# Console? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T02:17:10Z http://stackoverflow.com/feeds/question/47537 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/47537/c-console 11 C# Console? FlySwat 2008-09-06T15:08:57Z 2009-02-06T00:04:01Z <p>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.</p> <p><strong>UPDATE</strong> 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.</p> <p><img src="http://www.gfilter.net/junk/sharpconsole.jpg" alt="SharpConsole" title="" /></p> <p>If anyone wants it, let me know.</p> http://stackoverflow.com/questions/47537/c-console/47548#47548 11 Answer by Sören Kuklau for C# Console? Sören Kuklau 2008-09-06T15:19:39Z 2008-09-06T15:19:39Z <p>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 <code>irb</code>), or a means of interacting with an existing, compiled application currently running as a process.</p> <p>In the former case:</p> <ul> <li><strong>Windows PowerShell</strong> might be your friend</li> <li>Another candidate would be the <a href="http://michael.susens-schurter.com/blog/2006/12/20/cssh-c-shell/" rel="nofollow"><strong>C# shell</strong></a></li> <li>Finally, <a href="http://www.codeproject.com/KB/cs/csi.aspx" rel="nofollow"><strong>CSI</strong></a>, a Simple C# Interpreter</li> </ul> http://stackoverflow.com/questions/47537/c-console/47559#47559 1 Answer by LJ for C# Console? LJ 2008-09-06T15:27:39Z 2008-09-06T15:27:39Z <p>Google reveals a few efforts at this. One in particular illustrates why this is less straightforward than it might seem. <a href="http://www.codeproject.com/KB/cs/csi.aspx" rel="nofollow">http://www.codeproject.com/KB/cs/csi.aspx</a> 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 <a href="http://www.paxscript.net/" rel="nofollow">http://www.paxscript.net/</a>, which seems like a genuine attempt at interpreted C#. </p> http://stackoverflow.com/questions/47537/c-console/47713#47713 3 Answer by Dale Ragan for C# Console? Dale Ragan 2008-09-06T18:31:52Z 2008-09-06T18:31:52Z <p>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 <a href="http://www.sliver.com/dotnet/SnippetCompiler/" rel="nofollow">SnippetCompiler</a> could be a good fit.</p> <p>I just wanted to give you another option.</p> http://stackoverflow.com/questions/47537/c-console/51300#51300 5 Answer by Daren Thomas for C# Console? Daren Thomas 2008-09-09T06:37:01Z 2008-09-09T06:37:01Z <p>Found this on reddit: <a href="http://tirania.org/blog/archive/2008/Sep-08.html" rel="nofollow">http://tirania.org/blog/archive/2008/Sep-08.html</a></p> <p>Quote from the site:</p> <blockquote> <p>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. </p> </blockquote> http://stackoverflow.com/questions/47537/c-console/52728#52728 2 Answer by FlySwat for C# Console? FlySwat 2008-09-09T19:44:05Z 2008-09-09T19:44:05Z <p>It appears Miguel De Icaza was stalking me:</p> <p><a href="http://tirania.org/blog/archive/2008/Sep-08.html" rel="nofollow">http://tirania.org/blog/archive/2008/Sep-08.html</a></p> http://stackoverflow.com/questions/47537/c-console/203163#203163 0 Answer by AR for C# Console? AR 2008-10-14T23:02:06Z 2008-10-14T23:02:06Z <p>If you don't <em>have</em> to use the console, and just want a place to test some ad hoc C# snippets, then <a href="http://www.linqpad.net/" rel="nofollow">LinqPad</a> is a good option. I find it very cool/easy to use.</p> http://stackoverflow.com/questions/47537/c-console/212106#212106 0 Answer by Elias Chatzigeorgiou for C# Console? Elias Chatzigeorgiou 2008-10-17T13:27:51Z 2008-10-17T13:27:51Z <p>I would like a copy of the source code! Can you publish it? Thanks</p> http://stackoverflow.com/questions/47537/c-console/518537#518537 0 Answer by aleemb for C# Console? aleemb 2009-02-05T23:50:41Z 2009-02-06T00:04:01Z <p>I believe you are looking for <a href="http://www.codeplex.com/snippy" rel="nofollow">Snippy</a> =)</p> <p><img src="http://aleembawany.com/wp-content/uploads/2009/02/snippy.jpg" alt="Snippy Screenshot" /></p>