Negate() static private method

Applies numeric negation (i.e. unary minus) to numeric values
static private Negate ( CseObject obj ) : CseObject
obj CseObject The CseObject with the value to negate
return CseObject
Example #1
0
 ///
 /// <summary>
 ///		Negates the value property
 /// </summary>
 ///
 /// <param name="obj">CseObject to change</param>
 ///
 /// <returns>The CseObject with its value property negated</returns>
 ///
 public static CseObject operator -(CseObject obj)
 {
     return(ArithExp.Negate(obj));
 }