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