Esempio n. 1
0
 /// <summary>
 /// Multiplies two cells together for LONG and DOUBLE; if C1 is a string and C2 is either int/double, repeats the string C2 times;
 /// otherwise, returns the cell passed otherwise
 /// </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.Multiply(C1, C2));
 }