I understand int's, as are all value types, are stored on the stack. Int's can be boxed into objects which then means the int is storage on the heap. BUT what happens when an int is stored in a List or int[]?
I know List ofT is a class/reference type/heap stored type - does this mean int's in a List are boxed onto the heap?
Thanks