boxing = value type to reference type this is called boxing.unboxing = reference type to value type this is called unboxing.
Implicit conversion of value type to reference type of a variable is known as BOXING, for example integer to object type conversion. Conversion of reference type variable back to value type is called as UnBoxing.
Boxing is the conversion of value type to an object type.Unboxing is the conversion of object type to value type
Boxing: is converting value type to reference type
unboxing: is converting reference type to value type