VB.NET array with double bracket () ()

I came through a double bracket after the variable name, and I was wondering what that means.

Which means the following:

Private orgIdField()() As String 

I just know:

 Private orgIdField() As String 
+4
source share
1 answer

This is a jagged array (array of arrays). You can find more information in this MSDN article .

+5
source

Source: https://habr.com/ru/post/1494476/


All Articles