There has to be an easy way to grab all the header names from a import-csv?
ex: myfile.csv
code,name,state,zip
34,mike,co,80525
68,jim,co,80528
and do $mydata= import-csv myfile.csv, how do I get out the names of the
headers
I'm tring to get the equivilant of $headNames= $("code",name","State","Zip")


