Vector::GetHashCode Method ()

 

Returns the hash code for this vector.

Namespace:   System.Windows
Assembly:  WindowsBase (in WindowsBase.dll)

public:
virtual int GetHashCode() override

Return Value

Type: System::Int32

The hash code for this instance.

The following example shows how to get the hash code of a Vector.

private int getHashCodeExample()
{
    Vector vector1 = new Vector(20, 30);
    int returnHashCode = vector1.GetHashCode();

    return returnHashCode;

}

.NET Framework
Available since 3.0
Return to top
Show: