Accord.Math.Vector4.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

Returns the hashcode for this instance.
public GetHashCode ( ) : int
Результат int
        public override int GetHashCode( )
        {
            return X.GetHashCode( ) + Y.GetHashCode( ) + Z.GetHashCode( ) + W.GetHashCode( );
        }