I use pythonnet not ironpython.
There is a function like this:
test(ref string p1,out string p2)
How can I call test
in 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(----------)