I know a few differences,
- Value types are stored on the stack where as reference types are stored on the managed heap.
- Value type variables directly contain their values where as reference variables holds only a reference to the location of the object that is created on the managed heap.
Is there any other difference i missed... If so,what are they?