What is boxing?
Answers were Sorted based on User's Feedback
Answer / praveena
Boxing is an implicit conversion of a value type to the
type object
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / asha
BOXING IS DEFINED AS CONVERTING VALUE TYPES TO REFERENCES
TYPES .
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / swap
Boxing is the process of explicitly converting a value type
into a corresponding reference type. Basically, this
involves creating a new object on the heap and placing the
value there. Here is a basic example in C#:
int example = 35;
object i Example = example;
The new reference type includes the value 35.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is a design pattern and what is it for?
syntax for binding the data from database
How many types of transactions are there in com + .net ?
What operating systems does the .net framework run on?
How can I tell if .net 3.5 is installed?
What is connected and diconnected database ?
What is a DLL?
What is your observations between vb.net and vc#.net?
What is lazy initialization?
How do you pass value of a text box from page1.aspx to page2.aspx without storing it as a session value?
Which is the main Difference Between .Net 2003 and .Net 2005?
Do you know what is .net standard?