System.LOGIC.IMPLIES C# (CSharp) 메소드

IMPLIES() 정적인 개인적인 메소드

static private IMPLIES ( bool p, bool q ) : bool
p bool
q bool
리턴 bool
        internal static bool IMPLIES(bool p, bool q)
        {
            if (p)
            {
                return q;
            }
            return true;
        }
    }