コード例 #1
0
ファイル: Cell.cs プロジェクト: pwdlugosz/Spectre
 /// <summary>
 /// Perform modulo between two cells together for LONG and DOUBLE, 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.Mod(C1, C2));
 }