using System; namespace Tamir.SharpSsh.java { /// /// Summary description for Platform. /// public class Platform { public static bool Windows { get { return Environment.OSVersion.Platform.ToString().StartsWith("Win"); } } } }