本文介绍了C# COM DLL:我使用 Regasm 还是 Regsvr32?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在构建一个 C# ActiveX DLL...我是使用 REGASM 还是 REGSVR32 来注册它?
I am building a C# ActiveX DLL... do I use REGASM or REGSVR32 to register it?
如何注册 64 位接口与 32 位接口?
How do I register the 64-bit interface vs the 32-bit interface?
推荐答案
您需要使用 regasm.exe
注册 32 位和 64 位接口我相信你需要运行每个 regasm.exe
在:
C:WindowsMicrosoft.NETFrameworkv2.0.50727
和
C:WindowsMicrosoft.NETFramework64v2.0.50727
所以...在您的情况下,您需要运行 Framework64v2.0.50727
文件夹中的 regasm.exe
.
So... in your case you need to run the regasm.exe
in the Framework64v2.0.50727
folder.
以下是我们用来为我们的一个传统 ASP 应用程序注册 COM 互操作 DLL 的示例:
Here's an example we use to register a COM interop DLL for one of our legacy ASP apps:
regasm.exe Hosting.DeviceManager.Power.dll /register /codebase /tlb
这篇关于C# COM DLL:我使用 Regasm 还是 Regsvr32?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!