I know this sounds silly, but:
I found this application written in Mono and it is open source.
While looking at the source code, I found this two using directives that stopped me:
using Gdk; using Mono.Unix;
I assume these are mono-specific libraries.
So, can you run Mono on Windows? (maybe Visual Studio express edition?)
I am trying to learn C #
I see that there is a Windows application branch, but it is empty.
BTW: Mono thought about the cross platform in the first place?
EDIT
I downloaded / installed and ran the sample code
using Mono.Unix; class X { static void Main () { System.Console.Write("OK");} }
And the answer to my question is:
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
No, this does not work :(
c # windows mono
John
source share