vote up 0 vote down star
2

Once a controller object is created when does it become available for garbage collection?

flag

72% accept rate
Just curious: why do you care about this? – Matt Hinze Jan 12 at 12:23
Just curious about how its all put together so that I wont run into any memory issues. – zsharp Jan 12 at 18:07

1 Answer

vote up 2 vote down check

Usually when no active reference to this object is detected. This is handled internally by the garbage collector and so you do not have to take care about it.

So, having this in mind, after the moment Page_Unload method is called which is hosting the controller, the garbage collector gets notified that the controller object is ready for disposal.

link|flag

Your Answer

Get an OpenID
or

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