Is there any difference between below two statements
if (null != obj)
and
if (obj != null)
If both treate
The first is a Yoda condition. Use it you should not.