Ok, i'm having a brainfreeze.. I'm trying to determine if the array I import contains a certain object
for example, after I import a csv, I want to see if there is a property named code
I'm trying something like this
$i = ipcsv c:\temp\codes.csv
if ($i.code -ne $null) { do this }
I must be missing something....