What is Boxing and Unboxing?
Answer Posted / kautilya
Boxing is to implicitly converting value type to refrence
type,
int x = 10;
double y = x;
Unboxing is to explicitly converting refrence type to value
type
double y = 10.234;
int x = (int)y;
Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
What is page request in asp.net?
Where the cookie value is stored?
How can you use a custom controls in ASP.NET application?
What is the function of new view engine in asp.net? : asp.net mvc
What is boxing and unboxing in asp.net?
Explain the components of web form in asp.net
What is application Object?
Explain about solution explorer window?
Name the two properties are on every validation control?
Which is an advantage of application service providers?
What is postback pixel?
Are xaml file compiled or built on runtime?
What is cookieless session id explain in brief?
What is .net remoting?
What are triggers of an updatepanel?