I'm using IronPython in VS2012 and trying to call a .Net function which takes in a Ref parameter,
Lib.dll
public int GetValue(ref double value)
{
...
}
Python:
import clr
clr.AddReference('Lib.dll')
from LibDll import *
value =0.0
x = GetValue(value)
am I missing something, in C# we use ref
along with the variable name, what about here in Python?
Tuple<int, Double>
or something. – Howlond