MS.Win32.NativeMethods.Point.Point C# (CSharp) Method

Point() public method

Constructor which accepts the X and Y values
public Point ( double x, double y ) : System
x double The value for the X coordinate of the new Point
y double The value for the Y coordinate of the new Point
return System
            public Point(double x, double y)
            {
                _x = x;
                _y = y;
            }
            /// <summary>
NativeMethods.Point