C# COM组件 踩坑总结

step1:定义暴露的接口

     [ComVisible(true)]
    [Guid("BD946B9F-3A58-48E2-87F4-ADCFA75FDEA5")]
    public interface ITest
    {

       [DispId(1)]//接口编号1
        int ApiOne(string data);
        [DispId(2)]//接口编号2
        int ApiTwo(string data);

   }

step2:接口实现

    [ComVisible(true)]
    [Guid("3463F66D-CFE1-4292-B400-99EDA73E97F1"), ClassInterface(ClassInterfaceType.None)]
    [ProgId("NameSapce.TestImp")]
    public class TestImp : ITest
    {

int ApiOne(string data){return 1;};

int ApiTwo(string data){return 1;};

}

//---------------解释-----------

[ProgId("NameSapce.TestImp")] 对应注册表中的Class

C# COM组件 踩坑总结

Guid 可以用vs工具自动生成

 C# COM组件 踩坑总结

C# COM组件 踩坑总结

//----------------踩坑-----------------

vs打包自动注册

C# COM组件 踩坑总结

 调用正常,

手动注册,调用失败

打开注册表中查看 发现注册信息里面没有指定dll文件路径。

C# COM组件 踩坑总结

没有codebase ,dll文件只能放到系统目录下或者项目根路径下才能调用

指定了codebase dll文件就可以放在任何位置。

C:\Windows\Microsoft.NET\Framework\v4.0.30319\regasm.exe xxx.dll /tlb:xxx.tlb /codebase

注销

C:\Windows\Microsoft.NET\Framework\v4.0.30319\regasm.exe /u xxx.dll /tlb:xxx.tlb

 c#的dll不能用regsvr32.exe注册。

 

 

上一篇:437. 路径总和 III


下一篇:# 437. 路径总和 III【dfs+前缀和】