Convert a positive number to negative in C#

How about

myInt = myInt * -1


int myNegInt = System.Math.Abs(myNumber) * (-1);