I have a csv file with large number of columns . I have imported it to a table using the below code:
$table = Import-Csv "C:\data.csv"
$row = $table.Item(0);
$row.'Title'
I want to access the column using number . I want to do something like this :
$row[0]
How do I achieve this ?