Hi,
I am slowly getting to grips with how to code in Powershell.
What I have noticed is
Arrays
You can add dynamically to an array using $array += "Hello"
You cannot however reference an index of an array without defining it first
Hash Tables
Hash Tables required unique values per row
If I was wanting to have
Ordernumber Position
123 2
123 56
645 1
Am i better having that as a Powershell object?
The add to it on the fly