Fixed multi-dimension argument / return type (#55)
* Fixed multi dimension array arguments * . * . * . * ,
This commit is contained in:
@@ -85,6 +85,12 @@ namespace ProxyInterfaceSourceGeneratorTests.Source
|
||||
b = 1;
|
||||
}
|
||||
|
||||
public double[,] Out_MultiDimensionIssue54(out double[,] x)
|
||||
{
|
||||
x = new double[0, 0];
|
||||
return x;
|
||||
}
|
||||
|
||||
public bool Generic2<T1, T2>(int x, T1 t1, T2 t2)
|
||||
where T1 : struct
|
||||
where T2 : class, new()
|
||||
|
||||
Reference in New Issue
Block a user