Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Created June 15, 2018 05:51
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save christiannagel/bce2ca1eecec076f2d780e8243a38882 to your computer and use it in GitHub Desktop.
Assigning nullable to non-nullable with C# 8
public string GetIsbn2(Book book)
=> book.Isbn ?? string.Empty;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment