CrossUI.Drawing.Vector.Equals C# (CSharp) Method

Equals() public method

public Equals ( object obj ) : bool
obj object
return bool
        public override bool Equals(object obj)
        {
            if (ReferenceEquals(null, obj))
                return false;
            return obj is Vector && Equals((Vector)obj);
        }

Same methods

Vector::Equals ( Vector other ) : bool

Usage Example

Beispiel #1
0
 public bool Equals(Point other)
 {
     return(Vector.Equals(other.Vector));
 }