Skip to content

Instantly share code, notes, and snippets.

@hahmed
Created January 9, 2012 16:25
Show Gist options
  • Save hahmed/1583674 to your computer and use it in GitHub Desktop.
Save hahmed/1583674 to your computer and use it in GitHub Desktop.
understanding bool operators
[Test]
public void IsApplesOrBannans()
{
bool IsApple = true;
bool IsBannana = false;
if (!IsApple && !IsBannana)
Assert.Fail();
Assert.Pass();
}Is
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment