I am trying to merge two hashtables, overwriting key-value pairs in the first if the same key exists in the second.
To do this I wrote this function which first remo
I just needed to do this and found this works:
$HT += $HT2
The contents of $HT2 get added to the contents of $HT.
$HT2
$HT