>백엔드 개발 >C++ >C# 프로세스가 32비트인지 64비트인지 어떻게 확인할 수 있나요?

C# 프로세스가 32비트인지 64비트인지 어떻게 확인할 수 있나요?

Mary-Kate Olsen
Mary-Kate Olsen원래의
2025-01-05 14:52:40443검색

How Can I Determine if a C# Process is 32-bit or 64-bit?

프로세스의 비트 결정

C#에서 특정 프로세스가 32비트 또는 64비트 모드에서 실행 중인지 확인하는 것은 다양한 방법을 통해 구현되었습니다.

IntPtr 크기 확인

가장 간단한 방법은 IntPtr 데이터 유형의 크기를 확인하는 것입니다.

if (IntPtr.Size == 4)
{
    // 32-bit process
}
else if (IntPtr.Size == 8)
{
    // 64-bit process
}

WOW64 확인

다른 항목이 있는지 확인하려면 프로세스가 64비트 에뮬레이터(WOW64)에서 실행 중이면 다음 사항을 고려하세요. 코드:

private static bool IsWin64Emulator(this Process process)
{
    if ((Environment.OSVersion.Version.Major > 5) || ((Environment.OSVersion.Version.Major == 5) && (Environment.OSVersion.Version.Minor >= 1)))
    {
        bool retVal;
        return NativeMethods.IsWow64Process(process.Handle, out retVal) && retVal;
    }

    return false; // not on 64-bit Windows Emulator
}

여기서 NativeMethods.IsWow64Process는 DLL 가져오기입니다:

[DllImport("kernel32.dll", SetLastError = true, CallingConvention = CallingConvention.Winapi)]
[return: MarshalAs(UnmanagedType.Bool)]
internal static extern bool IsWow64Process([In] IntPtr process, [Out] out bool wow64Process);

위 내용은 C# 프로세스가 32비트인지 64비트인지 어떻게 확인할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.