Does anyone know if the equals operator is going to be overloaded in c# like it is in vb?

What I mean is in c# will be be able to do this:
Code:
if (SomeVar = SomeValue)
Instead of:
Code:
if (SomeVar == SomeValue)