In C Sharp, how can I set up an if statement that checks if one of several conditions is true? It must be only one of the conditions, if zero or two or more are true the if should be false.
|
|
You could write a helper method. This has the advantage that it short circuits, only evaluating exactly as many as necessary,
|
|||||||||||||
|
Linq implementation of Jason's method signature:
|
|||||||||||
|
|
You could use compose your booleans into a
For just two booleans, exclusive or becomes much simpler:
Edit: To achieve on-demand evaluation and short-circuiting, we need to promote our
The above snippet assumes the existence of a predicate-based
Sample data for testing (a breakpoint may be set on each
|
|||||||||||
|
|
Going for simplicity, you could just keep a running count:
|
|||||||||||||||
|
|
I think this would do the trick
If I didn't think wrong on this, this |
||||
|
|
|
Most of these answers will work and have 'good performance'. But the simplest answer is:
You do end up evaluating A/B/C more than once so this is really only useful when you have simple bools. |
|||
|
|