What is boxing and un-boxing in .net?
Answer / Avaneesh Kumar Sahu
Boxing is the process of converting a value type (like int or struct) into an object. Un-boxing is the reverse operation, converting an object back into a value type.nFor example, boxing an integer into an object: Object obj = 42;nUn-boxing an object back into an integer: int num = (int)obj;
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the reason of occurring overflow-underflow arithmetic exception error, it shows error message when we run our program by adding control?
What is a strong name in .net?
What are the properties of ADO.NET?
What is a formatter in .net?
What is IIS and how we deploy website on IIS.
How to send the Mail in C# using ASP.Net ? And my Answer is as follows ?
Explain what is the difference between web application and enterprise application?
Can you explain what do you understand about web service?
What is Code group in .Net with respect to CAS
What are object pooling and connection pooling and difference?
Explain how to manage pagination in a page using .net?
What data providers available in .net to connect to database?