System.Windows.Point.Point C# (CSharp) 메소드

Point() 공개 메소드

public Point ( double x, double y ) : System
x double
y double
리턴 System
        public Point(double x, double y)
        {
            this._x = x;
            this._y = y;
        }