Skip to content

Instantly share code, notes, and snippets.

@chriskuech
Last active June 7, 2019 18:50
Show Gist options
  • Save chriskuech/d5aa94db8ad9491df42a81b07e207954 to your computer and use it in GitHub Desktop.
Save chriskuech/d5aa94db8ad9491df42a81b07e207954 to your computer and use it in GitHub Desktop.
PS> @{} -eq @{}
False
PS> [PSCustomObject]@{} -eq [PSCustomObject]@{}
False
PS> @() -eq @() # doesn't even output True or False
PS> @(1, 2, 3) -eq @(1, 2, 3) # doesn't even output True or False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment