BlueCollar.Service.NativeMethods.IsOS64Bit C# (CSharp) Метод

IsOS64Bit() публичный статический Метод

Gets a value indicating whether the current environment is 64-bit.
public static IsOS64Bit ( ) : bool
Результат bool
        public static bool IsOS64Bit()
        {
            return IntPtr.Size == 8 || Is32BitProcessOn64BitProcessor();
        }