Is Mono : Mono « Development Class « C# / C Sharp
- C# / C Sharp
- Development Class
- Mono
Is Mono
using System;
using System.Collections.Generic;
using System.Text;
namespace s3
{
static class Utils
{
public static bool IsMono
{
get
{
return Type.GetType("Mono.Runtime") != null;
}
}
}
}
Related examples in the same category