1.

Please explain value types and reference types used in C#?

Answer»

Value TYPES in C# are STORED in a Stack. For EXAMPLE, INT, byte, double.

Reference types in C# are stored on a heap. For example, STRING, interface.



Discussion

No Comment Found