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