How is memory allocated for a static variable?
Solution 1:
Memory for static variables are normally held in some rooted (and hidden) object[]
. This can be seen doing a !gcroot on the object in WinDbg (with SOS).
Just to add, these references can never be GC'ed (unless you null the field), as I discovered recently.