Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
private List<Country> _europeanCountries;
public List<Country> EuropeanCountries =>
_europeanCountries ?? (_europeanCountries = CountriesCitiesDbService.GetAllEuropeanCountries());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment