AcademyRPG.Point.operator C# (CSharp) Méthode

operator() public static méthode

public static operator ( ) : bool
Résultat bool
        public static bool operator ==(Point a, Point b)
        {
            return a.X == b.X && a.Y == b.Y;
        }