using System;var p = new Point();var y = p.Y;//y is 0Console.WriteLine($"y is {y}");struct Point { public int X, Y; public Point() { X = -1; }}