What is the difference between the value-type variables and reference-type variables in terms of garbage collection?

Submitted by: Administrator
The value-type variables are not garbage-collected, they just fall off the stack when they fall out of scope, the reference-type objects are picked up by GC when their references go null.
Submitted by: Administrator

Read Online ASP Programming Job Interview Questions And Answers