Group: StrataFrame Developers
Posts: 6.6K,
Visits: 7K
|
Obviously I do not know what your code is doing, but the number one killer of many .NET developers is not cleaning up after the code and expecting the garbage collector to do the work. The other thing, that goes hand in hand here, are event handlers. If you ever gain a handler reference to any object, not just a BO, it will stay there until you explicitly remove the handler. The issue you are describing sounds more like an event handler issue to me...but you will definitely want to Dispose your manually created objects when you are through with them...whether it be a BO or some other type of object.
|