Object which are Disposable can be best used (if possible) in a using block. At the end of the using block, the object is automatically disposed.
Because of memory management it is always advised do dispose your objects if you don't need them anymore.
Here's some stuff to read from the MSDN.