Tagged Questions

10
votes
6answers
8k views

iif equivalent in c#

What's the iif equivalent in c#? Or similar short circuit?
1
vote
1answer
45 views

“Conversion from type 'DBNull' to type 'Boolean' is not valid”, after checking that it's not DBNull

In my ASP.Net Web-Application, I'm getting this error: Conversion from type 'DBNull' to type 'Boolean' is not valid. From this function: Namespace atc Public Class Nil '... ...
1
vote
2answers
1k views

python: iif or (x ? a : b) [closed]

Possible Duplicate: Python Ternary Operator If Python would support the (x ? a : b) syntax from C/C++, I would write: print paid ? ("paid: " + str(paid) + " €") : "not paid" I really ...