00001 using System;
00002
00003 namespace Tamir.SharpSsh.java
00004 {
00008 public class Platform
00009 {
00010 public static bool Windows
00011 {
00012 get
00013 {
00014 return Environment.OSVersion.Platform.ToString().StartsWith("Win");
00015 }
00016 }
00017 }
00018 }