0
Just make sure you are properly disposing all the resources consumed by you. Especially like Excel instances, sql server connections, files opened, etc. These resources are outside the area of garbage collection so it doesn't touch them.
So you should take care to dispose them manually.
If possible try to use using(....) clause as much as you can.