我是VB.net的新手,想要使用三元運算符。VB.Net中的三元操作符
If prefixDt IsNot Nothing AndAlso prefixDt.Rows.Count > 0 Then
Return True
Else
Return False
End If
Myattempt:
Return (prefixDt IsNot Nothing AndAlso prefixDt.Rows.Count > 0) ? True: False
錯誤:?
不能在這裏使用。
返回(prefixDt IsNot Nothing AndAlso prefixDt.Rows.Count> 0)...返回true或false。不需要? : – nabuchodonossor
令人印象深刻。我去做。但只是爲了學習目的,如何實現我所要求的。 – Unbreakable
檢查此http://stackoverflow.com/questions/576431/is-there-a-conditional-ternary-operator-in-vb-net出 –