Assume I have 2 machines, one machine with MS windows with .NET 4.0 and the other begin a linux machine with Mono 2.10.1
Now I create a command line application on the respective machines that will output the installed framework version using:
Console.WriteLine(Environment.Version);
Question 1
Is my assumption correct that the following should be displayed:
Windows : 4.0.30319.1
Linux : 2.10.1 (or something similar??)
Question 2
Assuming we have both mono and ms.net installed on a windows machine, is there a way to specify that an exe must run on the mono framework in windows? (perhaps a config file?)
Question 3
If I compile a (simple) mono application on a linux machine, will that compiled exe work on a windows machine with only ms.net installed?