I am going to convert some legacy VB codes to C#.
The original code is Me.variable1 = New Integer() {}
.
I used some converting website and get the answer as this.variable1 == new int[]
.
However, the IDE gives error "Wrong number of indices inside []; expected 1".
It seems I have to declare the size of array.
What size of the array the VB codes gives us? is it size 1 or no size?
Thanks!