Newbie question. How to calculate the value of the formula A f B, where f - the binary function OR or AND?
I'm not sure if this answers your question, but for example:
if (A || B) { Console.WriteLine("Or"); } if (A && B) { Console.WriteLine("And"); }