Created
June 15, 2018 05:51
-
-
Save christiannagel/bce2ca1eecec076f2d780e8243a38882 to your computer and use it in GitHub Desktop.
Assigning nullable to non-nullable with C# 8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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