namespace SharedNamespace
public record BothArePrintedOut(string One, string Two);
public record OneIsPrintedOut(string One, string Two)
internal string Two { get; init; } = Two;
public static void Main()
BothArePrintedOut both = new ("One", "Two");
OneIsPrintedOut one = new ("One", "Two");
Console.WriteLine($"OneIsPrintedOut {{ One = {one.One}, Two = {one.Two} }}");