Question
So I have this given list of objects. I don’t know their structure beforehand. I want to be able to access their property values and underlying data types to accomplish some other task.
Here is some dummy data as an example:
$DataList = ( @{ Id = 1; Name = "Red Pumpkin" }, @{ Id = 2; Name = "Green Pumpkin" }, @{ Id = 3; Name = "Blue Pumpkin" } ) | %{ New-Object PSObject -Property $_ };
How do I do this?
Continue reading “How To Access .NET Property Types Dynamically In PowerShell”
Advertisements