Answer Posted / maloy.adhikari
Converting a value type to reference type is called Boxing
and Converting reference type of value type is Unboxing.
int i = 1;
object o = i; // boxing
int j = (int)o; // unboxing
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
What is asp net framework?
What is associationset? : Entity framework
Do you know about the new features in ASP.Net MVC 4 ?
How does work clr?
Can we have enum in entity framework?
What is needed for running an application built on winfx on the .net framework 3.0?
Which version of the common language runtime (clr) does the .net framework 3.0 use?
What are the levels at which filters can be applied in an asp.net mvc application?
What operating systems will the .net framework 3.0 be available for?
Define the core components of an ASP.NET MVC application?
Explain JSON Binding?
How we can handle the exception at controller level in ASP.Net MVC?
Can I add mvc testcases in visual studio express?
Explain the advantage of packaging over xcopy in .net?
Which is the default http method for an action method?