It sounds like you have a memory or resource leak of some kind. Time to crack open a profiler and see what's consuming resources or memory.
Good profilers include
http://www.red-gate.com/products/dotnet-development/ants-performance-profiler
and
http://memprofiler.com/
-- this will attach to your running process and see what's out of control.
In general this kind of issue can be caused by objects that implement IDisposable not being disposed through a call to Dispose(). The memory and resources used by these objects are not managed by the .NET garbage collector so (unlike regular .NET objects) they won't be tidied up by the system automatically.
A profiler will usually tell you if this is an issue.
There are other situations where this can happen, for instance
- Allocation of very large blocks of memory, e.g. 40Gb arrays
- Very heavily loaded systems that don't have a chance to properly garbage collect can exceed their virtual memory allocation.
Again, a profiler will tell you where the problem is likely to lie.