M
Michel Racicot
I got a REALLY weird behavior...
In the following code,
if (sCurrentToken != "")
{
lstArrayLine.Add (sCurrentToken);
sCurrentToken = "";
}
when sCurrentToken is equal to "" (empty string), the sCurrentToken = "";
line, is EXECUTED!!! (but not the .add ( ) line...)
I traced and I really see the line being executed!!! How can this be
possible!?
In the following code,
if (sCurrentToken != "")
{
lstArrayLine.Add (sCurrentToken);
sCurrentToken = "";
}
when sCurrentToken is equal to "" (empty string), the sCurrentToken = "";
line, is EXECUTED!!! (but not the .add ( ) line...)
I traced and I really see the line being executed!!! How can this be
possible!?