PointF point = new PointF(3, 4);
PointF point1 = new PointF(3, 4); PointF point2 = new PointF(2, 5); PointF sum = PointF.Add(point1, point2);
PointF point = new PointF(3, 4); string str = point.ToString();These examples demonstrate the usage of PointF class to perform basic operations such as creating a point, adding two points, and converting a point to a string. The package library for this class is System.Drawing.