What is value type and reference type?

Answers were Sorted based on User's Feedback



What is value type and reference type?..

Answer / usman

In simple words value types are those datatypes that store
there values on stack memory and values are settle down at
compile time example are "ENUM" and reference type are
those datatype that store there values in heap memory and
settle down while run time i.e dynamic types examples are
strings,class type etc

Cheers

Is This Answer Correct ?    10 Yes 1 No

What is value type and reference type?..

Answer / kishore

Value types are the variables that directly contain the
vaiue and are stored in stack memry.
Example: int, char, float...

Reference types does not contain the value directly but has
the address of the value i.e reference address..
Reference types are stored in Heap memory.

Is This Answer Correct ?    1 Yes 1 No

What is value type and reference type?..

Answer / sushma

value types store values,even if we copy that the orginal
one it is uneffected,even if we modify the copied one ,
the reference types stores refereneces of the object, if
copy that one ,it is effected,if we modify the copied one

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Explain About stateless and state full web service

0 Answers   Digital GlobalSoft,


What is Dependency of Injection?

0 Answers  


how to access the virtual method without creating the objet for the virtual method?

1 Answers  


What is private in c#?

0 Answers  


What is sqldataadapter in c#?

0 Answers  






what kind of questions (.net)to expect in a telephonic interview.This is the first time i will be facing a tele interview .Any inputs regarding this??

2 Answers   iNube Software Solutions,


How does dependency injection work c#?

0 Answers  


How do generics work in c#?

0 Answers  


Where do we set the min and max pool size for connection pooling?

0 Answers  


Are structs value types or reference types?

0 Answers  


Can we inherit two classes in c#?

0 Answers  


What is difference between dictionary and hashtable in c#?

0 Answers  


Categories