what is ment by Unboxing?
Answers were Sorted based on User's Feedback
Answer / amar&venky
simply say converting reference type to value type.
Is This Answer Correct ? | 8 Yes | 0 No |
Answer / vasanth
Converting reference type to value type.
Example
Object x;
int y;
y=(int)x;
Is This Answer Correct ? | 1 Yes | 0 No |
What does addressof operator do in background ?
What is the default value of boolean variable?
What is default c#?
What are the different types of classes in c#?
What is selector c#?
I want to single value if you give any integer value. Below are examples 1. Input: 123 Output: 6 2. Input: 99 9+9=18 1+8 Output: 9 How to get above output?
What problem does Delegate Solve?
How do I do implement a assert?
What are the two kinds of properties in c#.
Why do we use polymorphism in c#?
Is string mutable in c#?
Can a class have multiple constructors c#?