int ArraySize(object array[ ])
Returns the count of elements contained in the array. For a one-dimensional array, the value to be returned by the ArraySize function is equal to that of ArrayRange(array,0).
配列に含まれる要素の数を返します。1次元配列では、ArraySize 関数によって返される値は ArrayRange(array,0) と同じです。
Parameters:
パラメータ:
1 2 | <b>array[]</b> - Array of any type. 任意の型の配列。 |
Sample:
サンプル:
1 2 3 4 5 | int count=ArraySize(array1); for(int i=0; i<count; i++) { // some calculations. } |