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 asp.net globalization?
What do you mean by authentication?
Explain what are the advantages of asp.net mvc framework? : asp.net mvc
Can asp.net work on an nt server?
What is form submit?
What is the difference between c# and .net?
Explain the main function of razor in asp.net? : asp.net mvc
To display data in a Repeater control which template you provide?
What I need to create and run an asp.net application?
Can you explain one critical mapping? Performance issue which one is better? Whether connected lookup tranformation or unconnected one?
In early binding will the method invoked on com component will verify it?s existance in the system or not ?
I am trying to implement sorting facility from client side code in GridView Control. So how can I fill up an Array inside client side code (using JavaScript), i want to assign my DataSet object declared and filled up on Server side(in code behind) to the array (on client side)
What is master page in dtp?
How can we make sure that Web API returns JSON data only?
What asp.net control can embed xaml into asp.net pages?