OK so I\'m a beginner with C# and I am having trouble understanding the if statement below.
For this example INumber is declared as 8, dPrice is 0 and dTAX is 10.
it should only enter the If statement, if iNumber does not equal 8 or 9
That would be:
if (!(iNumber == 8 || iNumber == 9)) ...