Does anyone have some definitive information on the following performance issues?
1. Is getValue() or close() more efficient?
From what I have seen in Performance Monitor it appears that close(), open(), etc. is more efficient. I had figured these to be wrappers. It looks like they are not.
2. At what point is it more efficient to use var nClose = close() as opposed to just using close()?
At some point it should more efficient to store the variable than to keep making the call.
Thanks.
1. Is getValue() or close() more efficient?
From what I have seen in Performance Monitor it appears that close(), open(), etc. is more efficient. I had figured these to be wrappers. It looks like they are not.
2. At what point is it more efficient to use var nClose = close() as opposed to just using close()?
At some point it should more efficient to store the variable than to keep making the call.
Thanks.
Comment