Will static members be ever collected by the garbage collector?
|
1
|
|
|
|
|
|
Objects referenced by static variables will only be garbage collected when the relevant In ASP.NET, " If you were worried about an object being garbage collected while you still had a reference to it via a static variable, though, you can relax. While you can access the object, it won't be garbage collected. |
||
|
|
|
|
Members are not collected... Objects are. |
||
|
|
|
|
A static member to a reference type is a reference, which may or may not point to an instance. If it points to an instance, said instance will not be collected until the static member is unloaded. If the type is loaded in a specific AppDomain, that can be unloaded. Otherwise it only happens when the application is terminated. |
||
|
|
