Fix method parameters: 'in', 'out' and 'ref' (#17)

* Fix Ref and Out

* _
This commit is contained in:
Stef Heyenrath
2021-07-27 18:47:00 +02:00
committed by GitHub
parent 6061728250
commit e6724dd457
6 changed files with 227 additions and 6 deletions
@@ -45,6 +45,17 @@ namespace ProxyInterfaceConsumer
{
}
public void In_Out_Ref1(in int a, out int b, ref int c)
{
b = 1;
}
public int In_Out_Ref2(in Address a, out Address b, ref Address c)
{
b = new Address();
return 404;
}
public void Void()
{
}