|
[C#]
XPoint point = new XPoint();
point.String = "20, 10";
Response.Write("X = " + point.X.ToString() + "<br>");
Response.Write("Y = " + point.Y.ToString() + "<br>");
[Visual Basic]
Dim point As New XPoint
point.String = "20, 10"
Response.Write("X = " + point.X.ToString() + "<br>")
Response.Write("Y = " + point.Y.ToString() + "<br>")
This produces the following output.
X = 20
Y = 10
|