المساعد الشخصي الرقمي

مشاهدة النسخة كاملة : C# not release processes



C# Programming
02-16-2013, 05:41 AM
In a C# 2008 desktop application, I am finding that there are processes that are not released once when the application finishes executing.
Every time this application runs, there are more processes that are not released. I want to mention this application was originally written as a console application, but was changed to a windows application since I did not want all the dos popup windows.

I do want to mention that in this application the following is not occuring:

1. When some of the objects are created, there is no dispose on the objects.

2. Some of the linq statements do not have a using clause on them.

What kind of code could be causing this problem?

Thus can you tell me, point me to a reference, and/or show me code on how to reolve this problem?