Skip to content

Instantly share code, notes, and snippets.

@christiannagel
Created June 10, 2018 09:16
Embed
What would you like to do?
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