Note: I\'ve seen this question asked sometimes before (a, b, c), but neither of these was in C#, nor helpful.
Assume I\'m using the ? : ternary
? :
Why would you want to use a ternary when you obviously need two parameters? You can simply use an if statement:
if(Condition())Action();