How can I detect I\'m running under mono-service2? (in C#/.NET 3.5, running mono 2.6.7 on ubuntu 11)
Type.GetType(\"Mono.Runtime\") tells me I\'m runnin
Type.GetType(\"Mono.Runtime\")
if (Environment.OSVersion.Platform.Equals(PlatformID.Unix)) { }