T
Tony Johansson
Hi!
So if I do these two boxxing
int i = 1;
object o1 = i;
MyStruct myStruct = new MyStruct();
Object o2 = myStruct;
These value types int and a struct get boxed but I wonder will these value
types get wrapped in some other
..NET object or will these just be created on the heap as is ?
//Tony
So if I do these two boxxing
int i = 1;
object o1 = i;
MyStruct myStruct = new MyStruct();
Object o2 = myStruct;
These value types int and a struct get boxed but I wonder will these value
types get wrapped in some other
..NET object or will these just be created on the heap as is ?
//Tony