R
Robert Crandal
I have the following function:
Function Foo (ByVal myData as String)
' Do stuff
End Foo
My question is, do I need to test if the "myData"
parameter is null or invalid?? How can I best
test the parater if it's valid or null or not??
(so i can avoid any errors)
thankx
Function Foo (ByVal myData as String)
' Do stuff
End Foo
My question is, do I need to test if the "myData"
parameter is null or invalid?? How can I best
test the parater if it's valid or null or not??
(so i can avoid any errors)
thankx