Microsoft.Xna.Framework.Vector4.Equals C# (CSharp) Method

Equals() public method

public Equals ( Vector4 other ) : bool
other Vector4
return bool
        public bool Equals(Vector4 other)
        {
            return this.X == other.X && this.Y == other.Y && this.Z == other.Z && this.W == other.W;
        }

Same methods

Vector4::Equals ( object obj ) : bool