See thread title. Can I safely do something like that without worrying about a NullReferenceException, or is not guaranteed that those boolean expressions will be evaluated left to right?
// can this throw an NRE?
if (obj == null || obj.property == value)
{
// do something
}
OrandAnd, which may introduce hard-to-find bugs. However, the keywordsOrElseandAndAlsohave been introduced to support this obvious deficiency. – Abel Aug 11 '10 at 23:07OrElsehas also opened the door for a floodgate of lame jokes amongst the VB team... "Do it...OrElse..." – corsiKa Feb 22 '12 at 20:16