What is boxing and how it is done internally?
Answer Posted / sandhya
Boxing is an implicit conversion of a value type to the
type object
int i = 123; // A value type
Object box = i // Boxing
In case of value type ,value is stored in the stack but
after boxing process value is stored in to heap.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Name the template that is used to create a user-defined component.
What is the full form of gac?
Explain how save rerecord in the database?
How is anchoring different from docking?
What is form design?
What is a windows based application?
Name the property which is used to specify the source from where the crystal reports would be accessed.
What are the different cloud platforms?
How to show a ContextMenuStrip instead of cthe default ContextMenuStrip,when you rightclick on the non client area of a window's Form or when alt+space keys are pressed
Name the method that has to be overridden to change the appearance of the control that is inherited from an existing control.
Suppose I am implementing one windows form. I am inserting some values into ms access. In that table 5 columns there. But I want to insert three columns only. When I am clicking another button then other two values also insert into that table?
Explain how to split a column header in gridview using c#.net?
How will calculated the net amount in tax add like total net amount = LT+ST+CESS+amount 2500 = 10%+12.5%+5.15%+amount? kindly please explain what type of formula we apply in software? Tushar
What are the advantages of form?
Suppose I have two combobox .. And I have some items in both combobox now I need to check the item in both combobox if same item is present in both combobox I need to display that item in message box?