Code: Select all
Local aReturn As String[,]
aReturn:=CSharpCalledMethod() // This works
aReturn := {"0", "0", "0", "EUR"} // This gives an error
Error XS0029 Cannot implicitly convert type 'array' to 'string[*,*]'
How do we fill a string array like in the 2nd line without getting this error?
The program needs the C# returned arrays as well as directly assigned arrays.
Dick