what is reference type to value type.

Answers were Sorted based on User's Feedback



what is reference type to value type...

Answer / suresh

convertion of Reference type to value type is called
UnBoxing.

ex: int x;
object obj=20;

x=Convert.ToInt32(obj);

Is This Answer Correct ?    4 Yes 0 No

what is reference type to value type...

Answer / sudhir sheoran

Value Types:-
Directly contains their values either
on stack or inline in a structure.

Each value types have their own copy of
data so doesn't effect each other.

Reference Type:
Contains a reference to the values memory address
Allocated on heap.
These can be self describing,pointer type or interface type
Reference type can refer to the same object.

Is This Answer Correct ?    0 Yes 0 No

what is reference type to value type...

Answer / suresh

1.Reference type varible data store on Heap memory,refernce
maintain in Stack memory.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

What are custom user controls in asp.net?

0 Answers  


IN an ASP.NET Web application if there is any error, how can you debug?

0 Answers   Siebel,


Hi please tell me what is ISNOTPOSTBACK,POSTBACK,AUTOPOSTBACK and also the extensions of aspx,asmx,ascx its urgent plz reply me soon....

6 Answers   Logica CMG,


Explain the code Access Security (CAS) in .net Framework?

0 Answers  


what is a .xap file? Explain with an example.

0 Answers  






What are different ASP.NET Web Forms with the technology different from though ASP (1.0-3.0)?

1 Answers   Siebel,


what is webservices. howit is use in our project .

1 Answers   Patni,


What are the types of validation in asp net?

0 Answers  


What is pre-init event in ASP.NET 2.0 page life cycle?

2 Answers   Fulcrum Logic,


Is it necessary to create a Windows application or Web application to test a Web service ? Is it must to consume this service?

2 Answers   Siebel,


is it possible to set more than web.config file for an ASP.net APPLICATION?can it run?how is it possible

3 Answers  


What's the difference between viewstate and sessionstate?

0 Answers  


Categories