Boxing : Converting value type to object Example : int a=50; object o=a;
UnBoxing: Converting object type to Value type Example
object o=21; int a=(int)o;
And which is used when?
How to create your own controls? Basic steps will be helpful.