Exemple #1
0
 /// <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));
 }