At the end of a block the varialbles that were declared inside the block go out of scope. If they are value types (like int) they simply get popped off the stack. If they are reference types (like most other objects, e.g. StringBuilder) then they will no longer be referenced (unless you passed it to something outside the block that is still in scope) by anything and the garbage collector will get it sometime later.
If you have objects that access scarce resources, like the various Stream based classes (or anything that implements IDisposable) then you should put that in a using statement like this:
using (Stream s = GetStream())
{
// Do something with the stream.
}
At the end of the using block then the Dispose method is called and any resources are freed up (such as file handlers, database connections, large chunks of memory, etc.)
In general you do not need to understand when exactly the garbage collector will run or free up memory. It was one of the hardest things for me to understand way back when I moved from C++ to .NET in 2002 simply because I was so used to calling delete on any object I created on the heap.
You no longer have to worry about any of this. Even if you forget to call dispose the garbage collector will get to it eventually (although you probably don't want to keep that file handle longer than necessary, hence IDisposable)