Treefrog.Framework.Imaging.Point.operator C# (CSharp) Метод

operator() публичный статический Метод

public static operator ( ) : bool
Результат bool
        public static bool operator !=(Point a, Point b)
        {
            return a.X != b.X || a.Y != b.Y;
        }