Comments
Sort by recent activity
I’m trying to profile my application using almost the same scenario:
1) Start application
2) Take snapshot
3) Open some UI and close it
4) Take snapshot (some UI controls still in memory)
5) Take snapshot (part of UI controls from 4) released).
I have some confusion with result from 4) and 5). It doesn’t matter if I wait few minutes after I closing UI in section 3 till I taking snapshot from section 4) there are always few ui controls stays in memory (as I understand from it that they not garbage collected – because I waited long enough). But when take immediately snapshot from 5) they are gone. I made various verifications for that scenario with various snapshot times – there is always the same result. I’m not understand why controls stay in snapshot 4) and gone in 5).
Any suggestions?
Thanks in advance
Yevgeny. / comments
I’m trying to profile my application using almost the same scenario:
1) Start application
2) Take snapshot
3) Open some UI and close it
4) Take snapshot (some UI controls still in memory)
5) Take...