Possible Duplicate:
How to detect which .NET runtime is being used (MS vs. Mono)?

In .net how dow I tell if my code is running on Mono?

link|improve this question

2  
(I got told to add as comment, sorry) Check for colour =D (I know it's cheeky but meh) – CodeBlend Aug 16 '11 at 11:46
feedback

closed as exact duplicate by skolima, Simon, Sam Saffron Nov 7 '11 at 11:00

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

up vote 6 down vote accepted

From the Mono FAQ:

http://www.mono-project.com/FAQ:_Technical

Below is directly from that link:

How can I detect if am running in Mono?

Having code that depends on the underlying runtime is considered to be bad coding style, but sometimes such code is necessary to work around runtime bugs. The supported way of detecting Mono is:

using System;

class Program {
    static void Main ()
    {
        Type t = Type.GetType ("Mono.Runtime");
        if (t != null)
             Console.WriteLine ("You are running with the Mono VM");
        else
             Console.WriteLine ("You are running something else");
    }
}

Any other hack, such as checking the underlying type of System.Int32 or of other corlib types, is doomed to fail in the future.

Long and short of it, just don't.

link|improve this answer
Thanks Adam. I only ask because I may need to workaround a bug. – Simon Aug 16 '11 at 11:52
@Simon no problem - sometimes even stuff you apparently shouldn't do is required. – Adam Houldsworth Aug 16 '11 at 11:53
turns out it is a duplicate :) but u still had a good answer – Simon Aug 16 '11 at 11:56
feedback

From mono porting guide:

public static bool IsRunningOnMono ()
{
  return Type.GetType ("Mono.Runtime") != null;
}
link|improve this answer
feedback

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