InterviewSolution
Saved Bookmarks
| 1. |
Explain boxing and unboxing in C#? |
|
Answer» Converting a SPECIFIC VALUE type to a particular reference type is known as Boxing. Whereas, explicit conversion of same reference TYPES, that were created during boxing, back to the same value type is known as UNBOXING. |
|