2.0
3.0
>
comp
>
gb
>
array
>
max
قبلی
بعدی
ویرایش
تغییر نام
واگرد
Search
سرپرستی
مستندات
اخطار! این صفحه ترجمه نشده است.
مشاهده نسخه انگلیسی
Array.Max (gb)
Property Read
Max
As
Integer
Returns the greatest index of the array.
In other words,
Array.Max =
Array.Count
- 1
.
This property is useful for enumerating the array using
FOR
..
NEXT
مثال
DIM i AS Integer, Text AS String[]
Text = ["Just", "test"]
FOR i = 0 TO Text.Max
PRINT Text[i]
NEXT