1

VB.NET で無制限の範囲を持つ配列を作成し、含まれている変数の数を取得するにはどうすればよいですか?

私が試した:

Dim _items(,) As String
_items(0, 0) = "hy"
        _items(0, 1) = "hello"
        _items(1, 0) = "bye"
        _items(1, 1) = "bye2"

        MsgBox(_items.GetLength(1)) 'But i cant get the length

どうもありがとう

4

1 に答える 1

2

構文が間違っていると思います

Dim n As Integer = 2
Dim str As String(,) = New String(n - 1, n - 1) {}

 MsgBox(_items.GetLength(1)) //if n is 3 then this will return 3

    Dim n,m As Integer 
     n=3,m=2
    Dim str As String(,) = New String(n - 1, m - 1) {}

 MsgBox(_items.GetLength(1)) //  return 2
 MsgBox(_items.GetLength(1)) //  return 3
于 2012-04-30T06:15:37.427 に答える