I have two objects:
PropID ValueX
---------- ------------
8039 xxxx
8041 xxxx
8042 xxxx
PropID ValueY
---------- -------
8039 yyyy
8041 yyyy
8042 yyyy
I want to end up with a new object containing PropName,ValueX,ValueY (based on the PropID), like this:
PropID ValueX ValueY
---------- ------------ ----------
8039 xxxx yyyy
8041 xxxx yyyy
8042 xxxx yyyy
I know it's simple but I'm rusty this moring and could use a helping hand.
*Not the same as In Powershell, what's the best way to join two tables into one? since I Don't want to use any third-party cmdlet but only native PowerShell.