Oracle PL/SQL COALESCE 函数的 C# 等效项是什么?
是否有一个语句或一行的方法来完成这样的事情,其中声明字符串 s 并分配表达式中的第一个非空值?
//pseudo-codeish
string s = Coalesce(string1, string2, string3);
或者,更一般地说,
object obj = Coalesce(obj1, obj2, obj3, ...objx);
Is there a one statement or one line way to accomplish something like this, where the string s is declared AND assigned the first non-null value in the expression?
//pseudo-codeish
string s = Coalesce(string1, string2, string3);
or, more generally,
object obj = Coalesce(obj1, obj2, obj3, ...objx);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如达伦·科普所说。
你的陈述
可以这样写:
换句话说:
相当于
As Darren Kopp said.
Your statement
Can be written like this:
to put it in other words:
is equivalent to
?? 运算符。
the ?? operator.