CLR
How does CLR recognises reference types and value types ? This was the question put forward to me in an interview.
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.
sathya bamaPosted Jul 7, 2006, 6:43 AM
CLR handles that structure is value type.structure data stored in stack.Class is reference type.class data stored in heap.