Posted By

rtipton on 05/15/09


Tagged

null Coalescing


Versions (?)


Advertising

Website Promotion DIRECTORY is a crucial factor for all websites that need to gain better organic search engine rankings and increase website traffic.
Submitting your website as part of your Web Promotion strategy to our SEO friendly and high traffic Business Directory for review is an excellent way to gain a valuable backlink and increase your websites visibility online.

Submit Site


Who likes this?

2 people have marked this snippet as a favorite

paelgr
umang_nine


Null Coalescing Operator (??)


Published in: C# 






Expand | Embed | Plain Text
  1. using System;
  2. namespace CoalesceTst
  3. {
  4. class Program
  5. {
  6. static void Main(string[] args)
  7. {
  8. string userName = "GabrielGray";
  9. string userName2 = null;
  10.  
  11. string name = userName ?? "<no name>";
  12. string name2 = userName2 ?? "<no name>";
  13.  
  14. Console.WriteLine(name);
  15. Console.WriteLine(name2);
  16. }
  17. }
  18. }

Report this snippet 

Comments

RSS Icon Subscribe to comments
Posted By: cmichaelgraham on May 19, 2009

nice !!

You need to login to post a comment.

Download royalty free graphics