G
Guest
Recently I noticed something that seems strange to me in .NET source that I
wasn't originally involved in producing.
I was wondering if this was a preferred .NET style (or indeed general
style). I believe not as the code also uses Hungarian notation.
In summary I had always used, for example, something like:
if( a > 0 )
wheras the source has
if( 0 < a )
or,
if( o == null )
as opposed to
if( null == o )
Comments please?
wasn't originally involved in producing.
I was wondering if this was a preferred .NET style (or indeed general
style). I believe not as the code also uses Hungarian notation.
In summary I had always used, for example, something like:
if( a > 0 )
wheras the source has
if( 0 < a )
or,
if( o == null )
as opposed to
if( null == o )
Comments please?