using System;
public class Foo(int integer)
{
public int Int {get => integer;}
}
public class Program
public static void Main()
var foo = new Foo(1);
foo.integer;
Console.WriteLine(foo.Int);