Jeremy Stone

Jeremy Stone

  • NA
  • 6
  • 11.9k

Decision making

Nov 16 2011 1:27 PM
How do I make it so that something happens if condition a and condition b are true or condition c and condition d are true. I was thinking something like

if a = true && b = true || c = true && d = true
        {
        Console.Write("Hello")
        }

but I am not sure.

Answers (3)