空合并运算符角2
在角2中等价于空合并运算符(?)。
在C#中我们可以执行一个操作:
string str = name ?? FirstName :"First Name is null";
通过||
执行合并 运算符,即
let str:string = name || FirstName || "name is null and FirstName is null";
你也可以阅读这个问题了解更多细节和解释。
链接地址: http://www.djcxy.com/p/73373.html