Is there a IIf
equivalent in C#
? Or similar shortcut?
相关问题
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Generic Generics in Managed C++
- Why am I getting UnauthorizedAccessException on th
- 求获取指定qq 资料的方法
C# has the
?
ternary operator, like other C-style languages. However, this is not perfectly equivalent toIIf()
; there are two important differences.To explain the first difference, the false-part argument for this
IIf()
call causes aDivideByZeroException
, even though the boolean argument isTrue
.IIf()
is just a function, and like all functions all the arguments must be evaluated before the call is made. Put another way,IIf()
does not short circuit in the traditional sense. On the other hand, this ternary expression does short-circuit, and so is perfectly fine:The other difference is
IIf()
is not type safe. It accepts and returns arguments of typeObject
. The ternary operator is type safe. It uses type inference to know what types it's dealing with. Note you can fix this very easily with your own genericIIF(Of T)()
implementation, but out of the box that's not the way it is.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
If()
operator that works like C#'s ternary operator. It uses type inference to know what it's returning, and it really is an operator rather than a function. This means there's no issues from pre-evaluating expressions, even though it has function semantics.the ternary operator
Also useful is the coalesce operator ??:
VB:
C#:
VB.NET:
C#
It's the ternary operator
?
It's limited in that you can't put statements in there. You can only put values(or things that return/evaluate to values), to return
This works ('a' is a static int within class Blah)
(round brackets are impicitly between the equals and the question mark).
This doesn't work.
So you can only use the c# ternary operator for returning values. So it's not quite like a shortened form of an if. Javascript and perhaps some other languages let you put statements in there.