예제 #1
0
파일: Cell.cs 프로젝트: pwdlugosz/Spectre
 /// <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));
 }