Изменения в новых версиях / C# 12.0

using System;
using System.Drawing;

var p = new Point(34, Color.Black);
Console.WriteLine(p.ToString());

class Point(int x, int y) 
{
    private int X = x;
    private int Y = y;
    private Color color;

    public Point(int x, int y, Color color) : 
    this(x, x)
    {
        this.color = color;
    }
}