Side-By-Side COM Interop with C# and VBA

前端 未结 4 2173
臣服心动
臣服心动 2020-12-01 05:49

I\'m not talking about calling a VBA COM from C#... the other way around!

What I would like to do is call a C# library using VBA in MS Access without registering the

4条回答
  •  孤独总比滥情好
    2020-12-01 06:37

    C# libraries are not regular DLLs. They're more similar to COM libraries which need to be registered (just like ActiveX controls) before being used; especially when called from non-.NET code.

    (Unless, of course, things have changed...)

提交回复
热议问题