What is Reference type and value type



What is Reference type and value type..

Answer / kirti

Reference Type:

Reference types are allocated on the managed CLR heap, just like object types.

A data type that is stored as a reference to the value's location. The value of a reference type is the location of the sequence of bits

that represent the type's data. Reference types can be self-describing types, pointer types, or interface types

Value Type:

Value types are allocated on the stack just like primitive types in VBScript, VB6 and C/C++. Value types are not instantiated using new go out of scope when the function they are defined within returns.

Value types in the CLR are defined as types that derive from system.valueType.

A data type that fully describes a value by specifying the sequence of bits that constitutes the value's representation. Type information for a value type instance is not stored with the instance at run time, but it is available in metadata. Value type instances can be treated as objects using boxing.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

What is managed extensibility framework?

0 Answers  


Explain the tools used for unit testing in ASP.Net MVC

0 Answers   B-Ways TecnoSoft,


How you deploy .NET assemblies

1 Answers  


Mention what is the difference between “ActionResult” and “ViewResult” ?

0 Answers  


Have you designed any components?

2 Answers   HP,


What is viewdata?

0 Answers  


What is Reference type and value type

1 Answers  


How route table is created in ASP.NET MVC?

0 Answers   NA,


what do you mean by navigation property?

0 Answers   Microsoft,


what is Assemble

4 Answers   Microsoft,


Is it possible to create a custom filter?

0 Answers  


Can Static Constructor be Overloaded?Justify it?

11 Answers   Infosys,


Categories