P
PagCal
Is this the default and expected behavior for vb.net?
'C' and 'C++' used to skip b() if a() was not true, because there was no
way the IF expression would ever be true.
For example, if you did something like:
If (NOT atEOF()) AND dataValueOK() Then
' process valid data here
ELSE
End if
will blow up in dataValueOK() as it's evaluated EVEN if atEOF() is TRUE.
'C' and 'C++' used to skip b() if a() was not true, because there was no
way the IF expression would ever be true.
For example, if you did something like:
If (NOT atEOF()) AND dataValueOK() Then
' process valid data here
ELSE
End if
will blow up in dataValueOK() as it's evaluated EVEN if atEOF() is TRUE.