what are value types and reference types? where they are stored?
Answer Posted / ctharam
Data Type are 2 Kinds. they are 1) Value Data Type 2) Reference Data Type.
1) Value Data Types are stored in Stack Memory Location( bool,byte,char,decimal,double,enum,float,int,long,struct,short and uint)
2) Reference Data Type are stored in Heap Memory Location(Class,Object,Array,Interface,Delegate and Dynamic).
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is a protected class in c#?
What is expression c#?
hi, is compulsory .net knowledge need for biztalk server training. if need, how far?.tell me some info abt real time instructors in hyd or other?
Explain the difference between Metadata and Manifest
List some of the basic string operation?
How do I unload an application domain?
How do I create a new form in c#?
What is difference between the "throw" and "throw ex" in .net?
what is the syntax to inherit from a class in c#?
Why ienumerable is used in c#?
What is difference between class and abstract class in c#?
Is a dll an assembly?
Which namespace is required to implement trace ?
What are properties in c#. Explain with an example?
how to compare numbers and dispaly the largest ? *first thing I wanted to do is to input how many numbers to be compared *and then analyzed the largest then display it.