检查该模块是否与regsvr32.exe的x86(32位)
我现在用C#开发了个DLL(给delphi调用),到另外一台没有VS开发环境的机子上部署,所以也就没有了Regasm 注册命令,运行时说没有注册类别,用regsvr32也不能注册,我在DLL中增加
[DllImport("你要登记的Dll")]
static extern int DllRegisterServer();
[DllImport("你要登记的Dll")]
static extern int DllUnregisterServer();