Difference between revisions of "Visual Basic Multidimensional Arrays"

From Techotopia
Jump to: navigation, search
(New page: A multidimensional Visual Basic array is nothing more than an array in which each array element is itself an array. A multidimensional array can, therefore, be thought of as a table, where...)
(No difference)

Revision as of 19:43, 3 August 2007

A multidimensional Visual Basic array is nothing more than an array in which each array element is itself an array. A multidimensional array can, therefore, be thought of as a table, where each element in the parent array represents a row of the table and the elements of each child array represent the columns of the row. In this chapter we will cover the creation and use of multidimentional arrays in Visual Basic. To learn how to use single dimentional arrays read Visual Basic Arrays.