0 votes
in C Sharp by
What you mean by boxing and unboxing in C#?

1 Answer

0 votes
by
Boxing – This is the process of converting from value type to reference type. For example,

int myvar = 10;

object myObj = myvar;

UnBoxing – It’s completely opposite to boxing. It’s the process of converting reference type to value type. For example,

int myvar2 = (int)myObj;

Related questions

0 votes
asked Oct 18, 2019 in C Sharp by Robin
0 votes
asked Oct 18, 2019 in C Sharp by Robin
...