[C#]
Point(int dw); Point(int x, int y); Point(Size sz);
[Visual Basic]
Sub New(dw As Integer) Sub New(x As Integer, y As Integer) Sub New(sz As Size)
None.
Point point = new Point(20, 10); Response.Write($"X = {point.X}<br>"); Response.Write($"Y = {point.Y}<br>");
This produces the following output.
X = 20 Y = 10