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;
}
}
}
}