Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Created May 5, 2018 21:14
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 christiannagel/781d29c91e8eb263086d79eaa5caf6d8 to your computer and use it in GitHub Desktop.
Save christiannagel/781d29c91e8eb263086d79eaa5caf6d8 to your computer and use it in GitHub Desktop.
Expression-bodied members with C# 7
// C# 6
private string _firstName;
public string FirstName
{
get { return _firstName; }
set { Set(ref _firstName, value); }
}
// C# 7
private string _firstName;
public string FirstName
{
get => _firstName;
set => Set(ref _firstName, value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment