February 2017
Beginner
737 pages
15h 22m
English
Arrays are the second most used containers in PowerShell. An array, in simple terms, is a multi-dimensional variable or a variable containing more than one value. The two core components to an array are the index number and the position value. When you use an array, you reference an index number and it will return the position value.
The following table represents an array with a single dimension:
|
Index number |
Position value |
|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
When you are storing, manipulating, or reading the data in an array, you have to reference the position in the array the data is residing. The numbers populated in the table's Index number column are representative ...
Read now
Unlock full access