July 15th, 2014

PowerTip: Use PowerShell to Get Hash Code of Tuple

Doctor Scripto
Scripter

Summary: Learn how to get the hash code of a tuple by using Windows PowerShell.

Hey, Scripting Guy! Question How can I use Windows PowerShell to get the hash code for a tuple?

Hey, Scripting Guy! Answer 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()

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.