Skip to content

Instantly share code, notes, and snippets.

@ThomasArdal
Last active August 29, 2015 14:06
Show Gist options
  • Save ThomasArdal/f89480d3b2c6b656e218 to your computer and use it in GitHub Desktop.
Save ThomasArdal/f89480d3b2c6b656e218 to your computer and use it in GitHub Desktop.
Class containing auto-properties with default values through initializers
public class Movie
{
public string Title { get; } = "The Big Lebowski";
public List<string> Genres { get; } = new List<string> { "Comedy", "Crime" };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment