J
juanph31
Hello there,
Why is it that I sometimes see this construct
//case 1
if ( null == myVariable)
{
//...etc
}
//case 2
if ( myVariable == null)
{
//...etc
}
Basically, what is the difference between the two?
Why is it that I sometimes see this construct
//case 1
if ( null == myVariable)
{
//...etc
}
//case 2
if ( myVariable == null)
{
//...etc
}
Basically, what is the difference between the two?