Writing iron python method with ref or out parameter
Posted
by aron
on Stack Overflow
See other posts from Stack Overflow
or by aron
Published on 2010-05-18T12:41:12Z
Indexed on
2010/05/18
13:10 UTC
Read the original article
Hit count: 410
c#
|ironpython
Hello,
i need to translate following C# method to the same IronPhyton method
private void GetTP(string name, out string ter, out int prov)
{
ter = 2;
prov = 1;
}
© Stack Overflow or respective owner