Error
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.
  • JHTMLicon not supported. File not found.

tempfilename

Conditional and Null-Coalescing Operators (?: and ??)
Wednesday, 14 December 2011 01:03
In code you want to assign one variable to another, but only if the variable is not null. If it is null, you want to populate the target variable with another value. The code normally may look like this using the C# Conditional Operator:

string fileName = tempFileName != null ? tempFileName : "Untitled";


If tempFileName is not null, fileName = tempFileName, else fileName = “Untitled“.
This can now be abbreviated as follows using the Null-Coalescing Operator:

string fileName = tempFileName ?? "Untitled";


The logic is the same. If tempFileName is not null, fileName = tempFileName, else fileName = “Untitled“.
The Null-Coalescing Operator comes up a lot with nullable types, particular when converting from a nullable type to its value type:

int? count = null;
int amount = count ?? default(int);


Since count is null, amount will now be the default value of an integer type ( zero ).

Read more: http://feeds.dzone.com/~r/dzone/snippets/~3/GH4PJob4sNg/14169

 


Taxonomy by Zaragoza Online