检查该模块是否与regsvr32.exe的x86(32位)
warning:
这篇文章距离上次修改已过567天,其中的内容可能已经有所变动。
检查该模块是否与regsvr32.exe的x86(32位)
我现在用C#开发了个DLL(给delphi调用),到另外一台没有VS开发环境的机子上部署,所以也就没有了Regasm 注册命令,运行时说没有注册类别,用regsvr32也不能注册,我在DLL中增加
[DllImport("你要登记的Dll")]
static extern int DllRegisterServer();
[DllImport("你要登记的Dll")]
static extern int DllUnregisterServer();
评论已关闭