码迷,mamicode.com
首页 > 其他好文 > 详细

空合并运算符(??):

时间:2017-07-02 23:14:02      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:str   res   string   pre   null   nbsp   赋值   csharp   word   

比如int y = x ?? -1 如果x为空,那么y的值为-1.

只能是null的时候会选取第二个值。

如果需要在null和empty的时候赋值,可以用下面的方式:

string result = string.IsNullOrEmpty(m) == true ? "nihao" : m;

 

空合并运算符(??):

标签:str   res   string   pre   null   nbsp   赋值   csharp   word   

原文地址:http://www.cnblogs.com/birdofparadise/p/7107525.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!