FlickrNet.PointD.operator C# (CSharp) Méthode

operator() public static méthode

For predefined value types, the equality operator (==) returns true if the values of its operands are equal, false otherwise.
public static operator ( ) : bool
Résultat bool
        public static bool operator ==(PointD point1, PointD point2)
        {
            return point1.X == point2.X && point1.Y == point2.Y;
        }