Is Mono : Mono « Development Class « C# / C Sharp






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