Cocoa.Point.Point C# (CSharp) Method

Point() public method

public Point ( float x, float y ) : System
x float
y float
return System
        public Point(float x, float y)
        {
            X = x;
            Y = y;
        }