Код: Выделить всё
int a = 3;
int b = 3;
Console.WriteLine(((object)a).Equals((object) b)); //True
Подробнее здесь: https://stackoverflow.com/questions/793 ... value-type
Код: Выделить всё
int a = 3;
int b = 3;
Console.WriteLine(((object)a).Equals((object) b)); //True