Вопрос

I came accross a double bracket after the variable name and I was wondering what does it mean.

What does the below mean?

Private orgIdField()() As String

I am just aware of;

Private orgIdField() As String
Это было полезно?

Решение

It is a jagged array (an array of arrays). You can find more info at this MSDN article.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top