fb:porticula NoPaste
wie speichert FB arrays?
Uploader: | Michael |
Datum/Zeit: | 18.09.2007 19:04:04 |
Dim As Integer a(1 to 3, 1 to 3)
Dim As Integer ptr b = @a(1, 1)
For x as integer = 1 to 3
for y as integer = 1 to 3
a(x, y) = x*10+y
next y
next x
For i As Integer = 0 To 8
Print b[i]
Next i