BitmapReader.Classes.Point.operator C# (CSharp) 메소드

operator() 공개 정적인 메소드

public static operator ( ) : Point
리턴 Point
        public static Point operator +(Point p1, Point p2)
        {
            return new Point(p1.X + p2.X, p1.Y + p2.Y);
        }