예제 #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));
 }