C
Chris
Why does this code fail?
int a = 5;
int b = 5;
object oa = a;
object ob = b;
Debug.Assert(oa == ob, "oa is not equal ob");
int a = 5;
int b = 5;
object oa = a;
object ob = b;
Debug.Assert(oa == ob, "oa is not equal ob");