Hi,
I'm designing my own semantic parser for C#.
Could you explain me how should I treat with variable type while "array of array" parsing:should it be something like this:
Thanks,
Nik
I'm designing my own semantic parser for C#.
Could you explain me how should I treat with variable type while "array of array" parsing:
int[][] a;
TypeReference typeRef = new TypeReference("System.Int32[][]", textRange);
Nik