我按照这个线程在我的 Fedora 机器上安装了 Mono:
但是,当我尝试使用以下方法编译我的程序时:
gmcs foo.cs
我得到:
foo.cs(11,44): error CS0117: `System.IO.File' does not contain a definition for `ReadLines'
/opt/novell/mono/lib/mono/2.0/mscorlib.dll (Location of the symbol related to previous error)
编译失败:1 个错误,0 个警告
有问题的行是:
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
foreach(int currentMax in File.ReadLines(args[0]).Select(int.Parse))
{
...
}
谁能指出我正确的方向?