.NET applications use up memory extensively when it is there to be taken. If you're short of memory, it will take less. It does this because garbage collection is expensive cpu-wise. Rest assured if you get short of memory it will be reclaimed.
The only thing you actively need to do is to remember to call Dispose on those objects that support it when you're done with them, assuming you created them.