Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Runtime C# knowing if 32-bit or 64-bit version of COM Interface is being used

I want to build a DLL Class Library use COM Interop, with C#, target ANY CPU, and register it as 32-bit and 64-bit interfaces.

I want to be able to, at runtime, display what interface was used - if I am using the 32-bit version, or 64-bit version.

Any ideas?

like image 539
Jason Avatar asked Nov 27 '25 22:11

Jason


1 Answers

In order for a process to load a 32-bit DLL, the process has to be 32-bit. And same for 64-bit. So to find out what has been loaded, assuming it has already worked, you just need to find out the bit-ness of the CLR:

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

PS. for discussion of whether you need to check for a size of 16, see my answer to this question.

like image 130
Daniel Earwicker Avatar answered Nov 30 '25 10:11

Daniel Earwicker



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!