System.Drawing.PointF.PointF C# (CSharp) Метод

PointF() публичный Метод

Initializes a new instance of the class with the specified coordinates.

public PointF ( float x, float y ) : System.Numerics.Hashing
x float
y float
Результат System.Numerics.Hashing
        public PointF(float x, float y)
        {
            _x = x;
            _y = y;
        }

Same methods

PointF::PointF ( float x, float y )