Explain the Difference between value and reference type.
Answer Posted / suhasini suresh
Reference types are stored on the run-time heap; they may
only be accessed through a reference to that storage. This
allows the garbage collector to track outstanding
references to a particular instance and free the instance
when no references remain. A variable of reference type
always contains a reference to a value of that type or a
null reference. A null reference refers to nothing; it is
invalid to do anything with a null reference except assign
it. Assignment to a variable of a reference type creates a
copy of the reference, not a copy of the value being
referenced.
Value types are stored directly on the stack, either within
an array or within another type. When the location
containing a value type instance is destroyed, the value
type instance is also destroyed. Value types are always
accessed directly; it is not possible to create a reference
to a value type. Prohibiting such a reference makes it
impossible to refer to a value class instance that has been
destroyed. A variable of a value type always contains a
value of that type. Unlike reference types, the value of a
value type cannot be a null reference, nor can it reference
an object of a more derived type. Assignment to a variable
of a value type creates a copy of the value being assigned.
| Is This Answer Correct ? | 10 Yes | 3 No |
Post New Answer View All Answers
What is misl?
I am constantly writing the drawing procedures with system.drawing.graphics, but having to use the try and dispose blocks is too time-consuming with graphicsobjects. Can I automate this?
What are the new thee features of com+ services, which are not there in com (mts)?
What is WSDL? Explain its architecture?
Explain how garbage collection works?
Is atl redundant in the .net world?
What is a strong name in .net?
What is iis? Have you used it?
How viewstate is being formed and how it is stored on client in .net?
Explain when should you use .net web forms over asp.net mvc?
What is DTS and explain the purpose of it?
What is SOAP? How you will do windows and forms authentication?
What is the concept of inheritance in .net?
Explain me what is the difference between a class and an object, and how do these terms relate to each other?
What is static constructor, when it will be fired? And what is its use?