Wednesday, October 31, 2007

What is reference type and value type?

Reference types inherit directly from System.Object and are stored in heap.They are directly controled by Garbage collector.Eg. Class, Delegate, Interface etc
Value type inherit from System.ValueType which inturn inherits from System.Object.They are stored in stack.Eg. Structs, integer,bool etc

No comments: