Difference between value and reference type.
By admin on Jan 17, 2007 in C Interview Questions, Technical
Value type - bool, byte, chat, decimal, double, enum , float, int, long, sbyte, short, strut, uint, ulong, ushort Value types are stored in the Stack
Reference type - class, delegate, interface, object, string
Reference types are stored in the Heap


