I have an object that can has 3 different state variables that are Boolean. The rule is that only one of the 3 can be true at any one time. All others must be false.
I'm writing server-side validation and need to confirm this rule. Is there a simple operation that I can use that will test for only one state being true?
I prefer to avoid the triple If logic for this.
UPDATE: This is not in ASP.NET. The record being passed is 3 booleans. The object is passed via json serialization. So I'm working with what is given me.
bools;) – Tim Schmelter Feb 20 at 22:38