C# constructors overloading

public Point2D(Point2D point) : this(point.X, point.Y) { }

Leave a Comment