How i can implement memory clean up in WP7? Does GC.Collect() do the trick? or need clean up manually?

link|improve this question

56% accept rate
In what context? What kind of cleaning up do you need to do? Cleaning up in/after your own application, or some kind of more general clean-up? – jalf Sep 23 '11 at 7:47
feedback

2 Answers

up vote 3 down vote accepted

You don't need to manually clean up memory on Windows Phone. You shouldn't call GC.Collect() unless it's absolutely necessary.

I would recommend you read this article: Windows Phone 7 App Development: When does the GC run

link|improve this answer
feedback

As Claus mentioned, the GC handles memory cleanup for you. If you are asking because you are running into memory usage issues, you can use the profile your memory usage using the Windows Phone Profiler (as long as you are targetting 7.1).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.