What's the iif equivalent in c#? or similar short circuit?
|
2
|
|||||
|
|
|
C# has the "?" ternary operator, like other C-style languages. However, this is not perfectly equivalent to iif. There are two important differences. To explain the first, this
Put another way, iif does not short circuit in the traditional sense, as your question indicates. On the other hand, this ternary expression does and so is perfectly fine:
The other difference is that If you really want iif() in C#, you can have it:
or a generic/type-safe implementation:
On the other hand, if you want the ternary operator in VB, Visual Studio 2008 and later provide a new |
||||||
|
|
|
the ternary operator bool a = true; string b = a ? "if_true" : "if_false"; |
||
|
|
|
|
It's the ternary operator
|
||
|
|
|
|
VB.NET:
C#
|
||||
|
|
|
Also useful is the coalesce operator ??: VB:
C#:
|
||
|
|
