Hi,
Whats best? To use or not to use Equals();

Code:
int a = 2;
int b = 3;


if(a != b)
{
//Sth
}

or

if(!a.Equals(b))
{
//Sth
}
Cheers !