How to use a C# dll in IronPython

后端 未结 6 785
轻奢々
轻奢々 2020-12-03 05:18

I have created a dll using C#. How do use the dll in IronPython. I have tried to add the dll using clr.AddReference(\"yxz.dll\"). But it fails. I have tried pla

6条回答
  •  爱一瞬间的悲伤
    2020-12-03 06:05

    I think it's failing to find the file because it doesn't know where to look for it, see here for a detailed explanation as to how the clr.AddReference...() functions work.

提交回复
热议问题