Differentiate UnBoxing and boxing
Write the main difference between UnBoxing and boxing.
Expert
The process is called as boxing when the value type is converted to the object type while, when the object type is converted to the value type, the process is called as unboxing.
The Boxing and unboxing facilitates value types to be treated as objects. Boxing the value type packages it inside the instance of an Object reference type. It allows a value type to be stored on a garbage collected heap. Unboxing extracts a value type from an object. This example shows an integer variable i is boxed and allocated to object obj.
Example:
int i = 123;
object obj = i; /* Thi line boxes i. */
/* The object obj can then be unboxed and assigned to integer variable i: */
i = (int)obj; // unboxing
Illustrate the meaning of data encapsulation?
Name some methods, available in .NET 4.0, which are used to delete and add items from the ListBox control?
Illustrate what do you mean by Asp.net Web form?
Explain how does an MDI form differ from a standard form?
What is Memory-Mapped Files?
Specify the operating systems over which the .NET Framework runs upon?
Explain MaskedTextBox control? And also explain the function of Mask property?
Illustrate the characteristics of the reference-type variables which are supported in a C# programming language.
Illustrate the reason in brief why WPF is used?
Write the difference between the WindowsDefaultLocation and WindowsDefaultBounds properties?
18,76,764
1953416 Asked
3,689
Active Tutors
1440396
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!