Maybe Accessing Null Reference (MANR)

Description:

MANR detects if the constant null may be used as the left operand of the '.' operation.

Example:

Example:

   public void printMessage(String msg) { 
      (msg != null ? new Message(msg) : null).Print();
   }