判断C# .NET 进程是否为64位 x64

public static bool Is64BitProcess()
        {
            return IntPtr.Size == 8;
        } 

猜你喜欢

转载自www.cnblogs.com/runliuv/p/9051628.html