1

Possible Duplicate:
Access x86 COM from x64 .NET

I have a COM object which is only x86.

My program runs native x64 (not through WOW64 emulation).
Is it possible that my program can access the x86 COM object?
Or do I need to port the x86 COM object to x64?

Community
  • 1
  • 1
Brian
  • 135
  • 1
  • 1
  • 5
  • 1
    Possible duplicate? http://stackoverflow.com/questions/359331/access-x86-com-from-x64-net –  Jan 14 '11 at 15:12

1 Answers1

2

Yes, you can, but only in out-of-proc mode.

Kirill Kovalenko
  • 2,121
  • 16
  • 18