Skip to content

Instantly share code, notes, and snippets.

@azaharafernandezguizan
Created June 22, 2019 13:34
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 azaharafernandezguizan/da0e5da0f8ca2df486e8fd87d90399cc to your computer and use it in GitHub Desktop.
Save azaharafernandezguizan/da0e5da0f8ca2df486e8fd87d90399cc to your computer and use it in GitHub Desktop.
string? fullname = person switch
{
null => null,
(null, string lastname) => $"Señor/a {lastname}",
(string firstname, string lastname)=> $"{firstname} {lastname}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment