Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Posh
0.1.4
TipsAndTricks/AddingHashtables.Tip.ps1
# You can add two hashtables together in PowerShell
@{
a
=
'b'
}
+
@{
c
=
'd'
}