Summary: Learn how to get the hash code of a tuple by using Windows PowerShell.
How can I use Windows PowerShell to get the hash code for a tuple?
Call the GetHashCode method from your Tuple object—for example,
this command creates a tuple and obtains the hash code of it:
$t = [tuple]::Create(1,2)
$t.GetHashCode()
This can also be accomplished in a single line:
[tuple]::Create(1,2).gethashcode()