T
Tom C
Just wondering, aside from readibility, is there any cost or benefit
to using the function declaration value as opposed to a dim value to
return the value of a function. It seems to be the 2nd perhaps
preferred method creates yet another object that has to be managed?
function x as object
x = something
end function
or
function x as object
dim o as object = something
return o
end function
to using the function declaration value as opposed to a dim value to
return the value of a function. It seems to be the 2nd perhaps
preferred method creates yet another object that has to be managed?
function x as object
x = something
end function
or
function x as object
dim o as object = something
return o
end function