예제 #1
0
파일: Cell.cs 프로젝트: pwdlugosz/Spectre
 /// <summary>
 /// Divides two cells together for LONG and DOUBLE, returns the cell passed otherwise as null
 /// </summary>
 /// <param name="C1">Left cell</param>
 /// <param name="C2">AWValue cell</param>
 /// <returns>Cell result</returns>
 public static Cell operator /(Cell C1, Cell C2)
 {
     return(CellOperations.Divide(C1, C2));
 }