Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Created June 10, 2018 09:16
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/ca3c82b6248d058d5ab5f6bba7d36e14 to your computer and use it in GitHub Desktop.
Save christiannagel/ca3c82b6248d058d5ab5f6bba7d36e14 to your computer and use it in GitHub Desktop.
Passing and returning non-nullable strings with C# 8
public class NewAndGlory
{
public string? GetANullString() => null;
public string GetAString() => "a string";
public string PassAString(string s) => s.ToUpper();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment