• if(1=0 and 1=null)

    Does ternary logic have the same rule that allows me to to say that the above is logically equivalent to

    if 1!=0 or 1!=null

    If so, I'm back where I started, since in my original example,

    if 1=0 and 1=null

    did not pass, but its logical equivalent,

    if 1!=0 or 1!=null

    does.