Assuming y is a value type, which is an example of boxing?
y = (int)thisObject;
int y = 3;
object thisObject = y;
y = (int)thisObject=;3;