When we need check whether object is null we use x == null;
but i saw in few places use null == x
rather than x == null
.
so what is different between
( x == null )
and
(null == x)
why is the main reason to do this. is this effect to performance.