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
mention in what all scenarios entity framework can be applicable?
Can I use razor code in javascript in asp.net mvc?
How we can multiple submit buttons in ASP.Net MVC
What is page life cycle?
Difference between ASP.NET MVC and ASP.NET WebForms?
Explain representational state transfer (rest) in detail?
What is oauth in web api?
What is the use of action filters in an mvc application?
Explain the role of assembly in the .net framework.
explain why t4 entity is important in entity framework?
i have done enough testing in life but now stated developing intereset in development work,Can i think of entering into development work that too in >Net after more then 4 years of testing experiece?
Explain what is asp.net mvc?
What you mean by routing in mvc?
what is complex type?
What is difference between viewbag and viewdata and tempdata?