Rick Lipkin wrote:even statics need to be released with nil
This is not true. STATIC variables can't be released as they have static lifetime.
Rick Lipkin wrote:I also believe Locals execute faster at run-time.
I don't think so. STATIC variables are created at program startup and automatically released at the program end, while LOCAL variables are created each time the function is called and automatically released when the function returns.
EMG