C
cs_hart
Can anyone tell me why the following causes an exception at eof?
inStr = essayRdr.ReadLine
While (Not inStr Is Nothing) And (inStr.Trim.Length = 0)
in c++, the first test will fail and the second will not be checked,
but it appears that VB is checking the second even after the first has
failed.
inStr = essayRdr.ReadLine
While (Not inStr Is Nothing) And (inStr.Trim.Length = 0)
in c++, the first test will fail and the second will not be checked,
but it appears that VB is checking the second even after the first has
failed.