Accessing Null Reference (ANR)

Description:

ANR detects if the constant null is used as the left operand of the '.' operation.

Example:

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