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 |
Sql Queries: A Table will be given Omiting Duplicate rows and adding a new column
1.What is the major advantage of polymorphism? Please don't simply say binding. Specify any other reason.
Explain about .net assemblies?
Can you create instance of a class which has private constructor?
How to create a key pair in .net?
What is the difference between override and overload in a method?
Readonly vs. const?
How to implement DataGrid in .NET?
Define satelite assembly?
What is RCW (Run time Callable Wrappers)?
Is atl redundant in the .net world?
Explain what is the difference between a class and an object?