diff.between object and reference?
What is the difference between value type and reference type ,where the object placed and where the reference is placed?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
AnttiPosted Dec 26, 2005, 10:22 AM
Value type variables are held in stack memory. Reference type references are held in stack memory, but the referenced object itself is held in heap memory.