Single dimensional Array
- An Array which contains one row or one column is known as dimensional Array
Multiple dimensional Arrays
- An Array which contains more than one rows and more than one columns is multi dimensional Array
Normal Array
- An Array which occupies a memory size of less than 64KB is known as normal Array
Huge Array
- An Array which occupies a memory size of >= 64KB is known as Huge Array
Static Array
- An Array whose physical size is fixed and cannot be changed at runtime is known as static Array
Dynamic Array
- An Array whose physical size is not fixed throughout the program execution and can be changed at runtime is known as dynamic Array
Array size can be
changed during the program execution using Resize ( ) function of Array class
In both C#.NET and VB.NET
VB.NET
also supports another keyword known as “REDIM” to change size of the Array
during runtime
Jagged Array
- An Array which contains another Array within it is known as jagged Array
- A jagged Array is known as Array of Arrays
No comments:
Post a Comment