BatchFlow.Position.Equals C# (CSharp) Метод

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

public Equals ( object obj ) : bool
obj object
Результат bool
        public override bool Equals(object obj)
        {
            Position other = (Position)obj;
            return (other.x == this.x && other.y == this.y);
        }