/* Instructions
* What is the program console output?
*/
using System;
struct Point
{
public int X
{ get; set; }
public int Y
public void Show()
Console.WriteLine("("+ this.X +","+ this.Y +")")//;
}
public class Program
static void Move(Point p, int x, int y)
p.X += x;
p.Y += y;
static public void Main(string[] args)
Point p = new Point{X = 4, Y= 6};
Move(p, 10, 10);
p.Show();