示例#1
0
文件: Cell.cs 项目: pwdlugosz/Spectre
 /// <summary>
 /// Performs the 'NOT' opperation, will return for null for DATE_TIME, CSTRING, and BLOBs
 /// </summary>
 /// <param name="C">A cell</param>
 /// <returns>A cell</returns>
 public static Cell operator !(Cell C)
 {
     return(CellOperations.Not(C));
 }