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
clr.AddReference(\"yxz.dll\")
You can use this:
import clr clr.AddReferenceToFile("yxz.dll")