Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前有一个在 Delphi 中创建的 Win32 类型库,我需要通过 .NET 使用、实现和重新公开它。将 TLB 带入 Prism 以实现接口所需的步骤是什么?
.NET 2.0 sdk 工具 TLBIMP 可以从 TLB 文件创建程序集。就像是:
tlbimp.exe mytlb.tlb /out:MyTLB.Import.dll /namespace:MyTLBImport
如果您想稍后签名,请确保使用 /publickey /keyfile 或 /keycontainer。
导入后,只需引用 dll 并将其用作常规库即可。