Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andrescevp/f66c015297cb87bba7cfcc69fa994004 to your computer and use it in GitHub Desktop.
Save andrescevp/f66c015297cb87bba7cfcc69fa994004 to your computer and use it in GitHub Desktop.
Clone a Hashtable PowerShell Example
$Car = [Hashtable]::New()
$Car.Add('Make','Lamborghini')
$Car.Add('Model','Aventador')
$NewCar = $Car.Clone()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment