Answer Posted / aejaz ahmad
Boxing is onverting a vlue type to refrence type (object
type)
Unboxing is converting reffrence type to value type as a
another value type
int i=0;
object o=i; //this is boxing
int i2=(int)o;//this is unboxing
long l=(long)i; //this is casting.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain file-based dependency and key-based dependency.
What permissions do asp.net applications posses by default?
What is viewstate information stored?
What are the asp.net server side objects?
Define msil.
Which method is used to perform all validation at the page level?
Why is string called immutable data type?
What does aspcompat="true" mean?
What is fulltrust?
What is a form tag?
What symbol would you use to denote, the start of a code block in aspx views?
Explain the use of errorprovider control in .net?
What is web api and why to use it?
Explain what is postback in asp. Net?
What is asp.net and how it works?