Scalien.NativeLoader.IsWindows C# (CSharp) Method

IsWindows() public static method

public static IsWindows ( ) : bool
return bool
        public static bool IsWindows()
        {
            string env = System.Environment.OSVersion.Platform.ToString();
            if (env == "Win32NT")
                return true;
            return false;
        }