Stored properties in C#

class Point {
    public int X { getset; }
    public int Y { getset; }
}

var point = new Point();
//X and Y is 0 (before assigning)
point.X = 3;
point.Y = 7;