Skip to content

Instantly share code, notes, and snippets.

@crgrieve
Created December 23, 2020 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save crgrieve/3ae3142e06c0361edf8795ce4d5fe53d to your computer and use it in GitHub Desktop.
Save crgrieve/3ae3142e06c0361edf8795ce4d5fe53d to your computer and use it in GitHub Desktop.
C# 9 init properties
public record Meetup
{
public string City { get; init; }
public string Topic { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment