C
Chance Hopkins
Can anyone tell me in a few words, is one of the following better and if so
which one and why:
if(varone != null)
if(varone != "")
dosomething();
if(varone != null && varone!= "")
dosomething();
I'm thinking what I need to learn more about is the "stack". Is that the
correct term? Anyone have references?
Thanks.
which one and why:
if(varone != null)
if(varone != "")
dosomething();
if(varone != null && varone!= "")
dosomething();
I'm thinking what I need to learn more about is the "stack". Is that the
correct term? Anyone have references?
Thanks.