Q
questions
This is not really a problem, but I am curious to know why.
Is this just a programming style, or are there any performance /
compilation gains from writting comparsion differently;
if ( null == TimeOfDay )
if ( TimeOfDay == null )
I've been seeing a lot a mixed code simular to this and I just want to
know if there is a particular reason for it.
Thanks for any insights
Is this just a programming style, or are there any performance /
compilation gains from writting comparsion differently;
if ( null == TimeOfDay )
if ( TimeOfDay == null )
I've been seeing a lot a mixed code simular to this and I just want to
know if there is a particular reason for it.
Thanks for any insights