如何检测我们在.NET中的ARM64版本的Windows 10下运行?(How to detect

2019-10-30 02:40发布

我创建了可以在Windows 10 x86,x64和ARM64(通过仿真器层)运行C#的.NET控制台应用程序。

我想知道如何检测应用程序在这些平台上运行。 我知道如何检测x86和x64, 但如何检测,该应用程序是内部ARM64运行

这是运行到我的ARM64系统的Visual Studio的快照。 你可以看到,它的检测为X86

Answer 1:

您将能够通过使用来检测处理器架构

System.Runtime.InteropServices.RuntimeInformation.ProcessArchitecture

然后,它会返回一个Architecure枚举: https://docs.microsoft.com/en-us/dotnet/api/system.runtime.interopservices.architecture?view=netstandard-2.0



Answer 2:

OK,此代码的工作:

public static class ArchitectureInfo
{
    public static bool IsArm64()
    {
        var handle = Process.GetCurrentProcess().Handle;
        IsWow64Process2(handle, out var processMachine, out var nativeMachine);

        return nativeMachine == 0xaa64;
    }

    [DllImport("kernel32.dll", SetLastError = true)]
    private static extern bool IsWow64Process2(
        IntPtr process, 
        out ushort processMachine, 
        out ushort nativeMachine
    );
}

(通过从C#的.NET调用IsWowProcess2(P /调用) )



文章来源: How to detect we're running under the ARM64 version of Windows 10 in .NET?