if (value < 1200 && " ")
{
_departmentID = value;
_rules.MaintainRule("department", false);
PropertyColors["department"] = Color.Black;
}
The condition will be going in place of the quotes. I know it has something to do with % operator but cannot figure out what I need to do. The reasoning is that I only want the if statement to be true if the departmentID is less than 1200 and divisible by 100.