I want to define an array which will contain 100 empty cells . So far I did it in this way :
$EntryAmount = New-Object 'double[]' 100
It seems to be working, but I'm not sure it's the right way. From all of the examples that I've seen, there was a definition for empty arrays without actual size or with specific content which then defined the size.