CSharpRepl
C# 的一种 read-eval-print 循环类型的东西。
这是一个简单的控制台应用程序,您可以使用它类似于基本的 repl。
repl 的操作就像您在编写匿名方法的主体一样。 因此,代码会在每一行上检查错误,但在您提供 return 语句之前不会实际执行。
> return "hello world!";
Output:
hello world!
执行
.NET 框架中的所有内容都应该可用,并且所有内容都将按照写入的方式直接执行——例如,Console.Write* 的实例将出现在返回之前。
> Console.WriteLine(1);
> return 2;
1
Output:
2
方法
您还可以定义可由后续代码调用的方法。 这些方法对于当前会话是持久的。
> method int Add (int x, int y)
Add> retur