.NET / ASP.NET / SQL Server / Developer Express
Boxing means converting Value type to a Reference type.
Ex :int i=100;object obj=(object) i;
Ex :
int i=100;
object obj=(object) i;
Unboxing means converting Reference type to a Value type.
Ex:
object obj=100;
No comments:
Post a Comment