well you can just say

VB Code:
  1. obj = Nothing

But its only of any use if the object your using is global. The object will automatically be set to nothing when out of scope (end of sub or dispose of a class). Some members can be disposed manually, usually obj.dispose but using .Net its hardly worth doing. Its clever enough to know when to keep and when to release an objects memory.