Hi there
When is it necessary when you have defined variables to set them to null or not? example
I am assuming if you define a variable local to a sub there is no need to set it to null. Are there instances when you absolutely need to when you no longer want to use the variable?
When is it necessary when you have defined variables to set them to null or not? example
B4X:
Dim lst as List
....
lst = null
I am assuming if you define a variable local to a sub there is no need to set it to null. Are there instances when you absolutely need to when you no longer want to use the variable?