Exemplo n.º 1
0
 private void RangeCheck(int index)
 {
     if ((index < 0) || (Count <= index))
     {
         throw ADP.ColumnsIndexInt32(index, this);
     }
 }