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 difference between html.beginform and ajax.beginform?
What are the components required to create a route in mvc?
What is the difference between model view and controller?
What is the purpose of a web form?
explain how you can load related entities in ef (entity framework)?
What is page life cycle?
What you mean by routing in asp.net mvc?
What is html.renderpartial?
how can you enhance the performance of entity framework?
What does mvvm mean?
Is razor a server side?
How to change the action name in ASP.Net MVC?
What is .net core framework?
Explain test driven development (tdd) ?
What is definingquery in entity framework? : Entity framework