Ejemplo n.º 1
0
 /// <summary>
 /// Subtracts one to the given cell for an LONG or DOUBLE, returns the cell passed otherwise
 /// </summary>
 /// <param name="C">The cell argument</param>
 /// <returns>Cell result</returns>
 public static Cell operator --(Cell C)
 {
     return(CellOperations.AutoDecrement(C));
 }