Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created October 11, 2020 07:34
public record Person
{
public string LastName { get; }
public string FirstName { get; }
public Person(string first, string last) => (FirstName, LastName) = (first, last);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment