Is there a VB.NET equivalent for C#'s ?? operator?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|||
|
|
||||
|
|
|
You can use an extension method. This one works like SQL Coalesce, and is probably overkill for what you are trying to test, but works.
|
|||||||||||||||||||
|
|
No, there is not an equivalent to C#'s null coalescence. It does have a ternary operator (IF(condition,true,false)), which can be used to approximate it, but doesn't have an exact equivalent. In particular, without using an intermediate variable, you can't avoid the possible incorrect results when a function has side effects. |
|||
|
|