LoginSignup
0
0

More than 1 year has passed since last update.

二次元配列の要素数取得

vb.net
'二次元配列要素数取得
Dim a As Integer = array.length    '行数取得
Dim b As Integer = array(0).length '列数取得

'二次元リスト要素数取得
Dim a As Integer = csvList.Count    '行数取得
Dim b As Integer = csvList(0).Count '列数取得
0
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0