两个问号

http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=773971&SiteID=1&mode=1


a= x ?? y Is abbreviation for

if(x!=null)
  a=x;
else
  a=y;



posted on 2006-09-29 13:54  stswordman  阅读(298)  评论(0编辑  收藏  举报