Is memory leaks possible if a value type is boxed and is not unboxed?
Code:
int i =3; object o = i;//Implict boxing //This object is never unboxed
Comment