我知道这听起来很愚蠢但是:
我发现在Mono上写的this应用程序是开源的.
在查看源代码的同时,我发现这两个“使用”指令停止了我:
using Gdk; using Mono.Unix;
我猜他们是Mono特定的库.
那么,有可能在Windows下运行Mono吗? (也许是Visual Studio Express版?)
我正在努力学习C#
我看到该应用程序有一个Windows分支,但它是空的.
BTW:Mono是否首先考虑过跨平台?
编辑
我已下载/安装并运行示例代码
using Mono.Unix; class X { static void Main () { System.Console.Write("OK");} }
我自己的问题的答案是:
x.cs(1,12): error CS0234: The type or namespace name `Unix' does not exist in the namespace `Mono'. Are you missing an assembly reference? Compilation Failed: 1 error(s),0 warnings
不,它不起作用:(