Should be a simple question for the C# experts here.
I basically want to check if one value or another is TRUE, a wild stab at the code is below:
if
The conditional OR operator || is what you need
||
if ((Boolean.Parse(staff.getValue("Male")) || Boolean.Parse(staff.getValue("Female"))) { //is true }
If the first condition is TRUE, then the second condition isn't checked since the outcome is obviously going to return TRUE.
TRUE