Skip to content

Instantly share code, notes, and snippets.

@Phuseos
Created May 26, 2016 14:18
Show Gist options
  • Save Phuseos/fde42a9b97b5bd76d2745a61221cbc19 to your computer and use it in GitHub Desktop.
Save Phuseos/fde42a9b97b5bd76d2745a61221cbc19 to your computer and use it in GitHub Desktop.
Null coalescing operator '??' (C#)
protected void CoalesNull(Object sender, EventArgs e) {
string MessageNoNull = "Hello World!";
string ResultNoNull = MessageNoNull ?? "Null!";
Console.WriteLine(ResultNoNull); //Prints "Hello Word!"
string MessageNull = null;
string ResultNull = MessageNull ?? "Null!";
Console.WriteLine(ResultNull); //Prints "Null!"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment