Exemplo n.º 1
0
 public static object Negate(int x)
 {
     try {
         return(checked (-x));
     } catch (OverflowException) {
         return(LongOps.Negate(x));
     }
 }