int i=5;
i.ToString();
AND
int i=5;
Object obj=i;
obj.ToString();
I see this code in a c# book but i didnt understand this code, i got the meaning of boxing that mean Boxing allows value types to be implicitly treated like objects, plz explain those 2 code samples , thnxx