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()
    {
        this.X = x;
        this.Y = y;
    }