我使用 pythonnet 而不是 ironpython。
有一个这样的功能:
test(ref string p1,out string p2)
如何test
在 python 3.6 中调用?
import clr
import sys
import System
sys.path.append(r'd:\dll')
clr.FindAssembly('communication.dll')
from communication import *
dll=IEC62056()
dll.test(----------)