vote up 1 vote down star

Is there a way to identify in which OS we are running mono, with C# code?

Some sort of Hello World, but instead of using a fixed string as an output use the current OS?

flag

2 Answers

vote up 4 vote down check

Try System.Environment.OSVersion

You can also detect if your code is run under Mono or MS.NET:

        if (Type.GetType("System.MonoType", false) != null) {
            // we're on Mono
            IsMono = true;
        } else {
            IsMono = false;
        }
link|flag
Thanks for the fast response, Environment.OSVersion indeed returns which OS I am running. – Raúl Roa Mar 28 at 8:14
If your code might run on really old Mono, remember that it used 128 as PlatformID for Unix. – skolima Aug 28 at 7:50
vote up 1 vote down

This link: http://mono-project.com/FAQ:_Technical#How_to_detect_the_execution_platform_.3F

Give this code:

using System;

class Program {

    static void Main ()
    {
            int p = (int) Environment.OSVersion.Platform;
            if ((p == 4) || (p == 6) || (p == 128)) {
                    Console.WriteLine ("Running on Unix");
            } else {
                    Console.WriteLine ("NOT running on Unix");
            }
    }
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.