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

Equals() public method

Returns a value that indicates whether the current instance is equal to a specified object.
public Equals ( object obj ) : bool
obj object Object to make the comparison with.
return bool
        public override bool Equals(object obj)
        {
            bool result = false;
            if (obj is Vector2)
            {
                result = this.Equals((Vector2)obj);
            }
            return result;
        }
        /// <summary>Gets the hash code of the vector object.</summary>

Same methods

Vector2::Equals ( Vector2 other ) : bool