Should you set all the objects to null (Nothing in VB.NET) once you have finished with them?
null
Nothing
I understand that in .NET it is essential to
The only time you should set a variable to null is when the variable does not go out of scope and you no longer need the data associated with it. Otherwise there is no need.