If you define integer variable and a object variable and a structure then how those will be plotted in memory ?



If you define integer variable and a object variable and a structure then how those will be plotted ..

Answer / mr vinod kumar

Integer , structure – System.ValueType -- Allocated memory on stack , infact integer is primitive type recognized and allocated memory by compiler itself .
Infact , System.Int32 definition is as follows :
[C#]
[Serializable]
public struct Int32 : IComparable, IFormattable, IConvertible
So , it’s a struct by definition , which is the same case with various other value types .
Object – Base class , that is by default reference type , so at runtime JIT compiler allocates memory on the “Heap” Data structure .
Reference types are defined as class , derived directly or indirectly by System.ReferenceType

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Sharp Interview Questions

Why do we need abstraction in c#?

0 Answers  


What is difference between int and int in c#?

0 Answers  


What does the parsefloat function do?

0 Answers  


5. What properties we used to call stored procedure in C#?

2 Answers   Mphasis,


What is the difference between firstordefault and first?

0 Answers  


How structure objects are destroyed? As GC releases only the objects in stack, and structure is a value type and stored in heap. So how structure objects are released?

2 Answers  


What are the types of class in c#?

0 Answers  


What are the properties in c#?

0 Answers  


what is the Difference between the public and private ?

0 Answers   Microsoft,


What is a delegate? How can it works?

0 Answers   Siebel,


what are the advantages of c# over vb.net?

10 Answers   Choice Solutions, HCL, Practical Viva Questions,


Are arrays value types or reference types?

0 Answers  


Categories