Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

Question: Write some code to box and unbox a value type.
Answer: // Boxing
int i = 4;
object o = i;
// Unboxing
i = (int) o;
Is it helpful? Yes No

Most helpful rated by users:

©2026 WithoutBook