[Mono-list] Interactive .NET operation

Keisuke Nishida knishida@netlab.jp
Wed, 27 Nov 2002 23:45:02 +0900


Hi,

Is there a command-line tool that allows me to access .NET
interactively?  I am thinking of something like this:

  $ interactive-mono
  mono> using System
  mono> Console.WriteLine("Hello")
  Hello
  mono> class Foo
  mono> static int Add(int x, int y) { return x + y; }
  mono> Add(1, 2)
  $1 = 3
  mono>

If not, I am interested in writing one (if it is feasible).

Keisuke