System.Windows.Point.Point C# (CSharp) Method

Point() public method

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