Accord.IntPoint.Equals C# (CSharp) Méthode

Equals() public méthode

Check if this instance of IntPoint equal to the specified one.
public Equals ( object obj ) : bool
obj object Another point to check equalty to.
Résultat bool
        public override bool Equals( object obj )
        {
            return ( obj is IntPoint ) ? ( this == (IntPoint) obj ) : false;
        }