Primary constructor
- Too often we need to write too much code
- An example: Constructor that takes some parameters to set fields with the same name
- C# will help us to write this with no effort
class Point(int x, int y) {
public int X { get { return x; } }
}