What is the difference between Boxing and Unboxing in C#
Answer / preetha
Boxing is a process in which object instances are created
and copy values in to that instance.
Unboxing is vice versa of boxing operation where the value
is copied from the instance in to appropriate storage
location.
Below is sample code of boxing and unboxing where integer
data type is converted in to object
and then vice versa.
Dim x As Integer
83
Dim y As Object
x = 10
‘ boxing process
y = x
‘ unboxing process
x = y
| Is This Answer Correct ? | 0 Yes | 1 No |
What is the difference between an MLE and an SLE?
What is cmutex? How can we use it?
Do I need the microsoft visual c++?
Explain pointer to the constant and constant pointer? Explain difference between them.
what is the difference between the codes written in the document class and view class
How can we allow no selection of radio button in grouped radio buttons?
Differences between vc 6.0 and vc 7.0
How many time DLLMain gets called?
How do I reinstall microsoft visual c++?
How do I uninstall visual c++?
What is the difference between the = and == operators?
What is visual c++ runtime?