I have a CSV that I want to process in an array object and export as another CSV. However when I do that, instead of copying the values of the array, it copies the attribute of the object.
"Length","LongLength","Rank","SyncRoot","IsReadOnly","IsFixedSize","IsSynchronized","Count" "52","52","1","System.Object[]","False","True","False","52"
How can resolve this?
EDIT:
The code that caused this:
Export-Csv $data test.csv
Where $data
is the array that stores the output of the import-csv.