Inheritance: IQueryTable, ILockable
Ejemplo n.º 1
0
 public TableVariableResolver(Table table)
     : this(table, -1)
 {
 }
Ejemplo n.º 2
0
 public TableVariableResolver(Table table, int rowIndex)
 {
     this.table = table;
     this.rowIndex = rowIndex;
 }
Ejemplo n.º 3
0
 public int CompareTo(RawTableItem other)
 {
     return(Table.GetHashCode() - other.Table.GetHashCode());
 }