4

Is there CLI/GUI tool to execute C# code, i.e. alternative for Python ipython/Ruby irb. Immediate Windows from Visual Studio is only available during debugging and in some cases can not execute code

hellboy
  • 1,567
  • 6
  • 21
  • 54

2 Answers2

7

do you mean to execute arbitrary snippets of C# ?

LinqPad4 is pretty good.

Eoin Campbell
  • 43,500
  • 17
  • 101
  • 157
3

There is the CsharpRepl project from the mono guys.

And linqpad is a very popular option (you don't have to use it just for LINQ).

Another option is to use snippy by Jon Skeet.

Oded
  • 489,969
  • 99
  • 883
  • 1,009