2
Answers

Unboxing doubt

Megha Singhal

Megha Singhal

13y
1.5k
1
Please suggest..

which among the following are unboxing example:

enum E={"Hello World"};

void sample(System.Enum et)
{
 E e = (E) et;
}


OR

class C = {public int Value{get;set;}}

void sample1(C ct)
{
   int i = ct.Value;
}

Answers (2)