[Mono-list] csharp REPL

Jonathan Pryor jonpryor at vt.edu
Mon Mar 18 13:58:39 UTC 2013


On Mar 18, 2013, at 4:33 AM, Ian Norton <ian.norton-badrul at thales-esecurity.com> wrote:
> You probably mean to do:
> 
> $ csharp -r:System.Core 

That shouldn't be necessary at all; System.Core.dll should be in the default assembly include set and `using System.Linq` should be in the default namespace set for `csharp` so that you can immediately use LINQ:

	$ csharp
	Mono C# Shell, type "help;" for help

	Enter statements below.
	csharp> Enumerable.Range(1, 10).Max();
	10 

 - Jon



More information about the Mono-list mailing list