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 a web based system?
Define the steps to set up validation control.
What does the .webpart file do?
Define msil.
What is ASLM?
Difference between overriding and overloading?
How does windows service lifecycle differ from a .standard. Exe?
What is viewstate? What does the “enableviewstate” property do?
What is Web Server Control Templates.?
Where the assembly is stored in asp.net?
Differentiate the session object and application object?
Is there any limit for query string? Means what is the maximum size?
What is the namespace to create thread in .net?
How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.
What are the ways of preserving data on a Web Form in ASP.NET?