G
Guest
It would be really nice if there was an option that warned the developer that calls to functions did not handle the returned value, or alternatively threw a compilation error.
I have been caught so many times by witing something like
Split(myString,",")
instead of
MyArray = Split(myString,",")
(or maybe it is there and I havent found it?)
guy
I have been caught so many times by witing something like
Split(myString,",")
instead of
MyArray = Split(myString,",")
(or maybe it is there and I havent found it?)
guy