Hi to everybody. Lastweek i had taken an interview on c#.
They ask what is boxing & unboxing, Masking.Please tell the
answer and it is useful for me.
Answer Posted / mr. d
class Test
{
static void Main()
{
int i = 1;
object o = i; // boxing
int j = (int) o; // unboxing
}
}
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
How do you concatenate in c#?
What is the meaning of MSIL?
What is append in c#?
Why do we use static methods in c#?
Explane each and every methods of nterface Queue? Explain About performance issues on retrieving records
What is the difference between asp net and c#?
How you will create satellite assemblies?
Can abstract class have constructor?
What is the difference between list and arraylist in c#?
What is generic in c#?
What are the types of class in c#?
What is instantiating a class in c#?
Explain the difference between access specifier and access modifier in c#?
What is difference between === and ==?
What is ienumerable <> in c#?