Trying to initialize a 3 row x 4 column array in VB.Net
Private storage As String(,) = New String(2, 3) {}
storage(0,0) = "Tax Benefits"
storage(1,0) = "Political Stability"
storage(2,0) = "Relocation Costs"
when I try to put in the strings into the array, it tells me that a declaration is expected....
what am I missing here... its gotta be obvious
Private storage As String(,) = New String(2, 3) {}
storage(0,0) = "Tax Benefits"
storage(1,0) = "Political Stability"
storage(2,0) = "Relocation Costs"
when I try to put in the strings into the array, it tells me that a declaration is expected....
what am I missing here... its gotta be obvious