예제 #1
0
파일: DataMatrix.cs 프로젝트: Daoting/dt
 public void ClearRows(int row, int count)
 {
     for (int i = 0; i < count; i++)
     {
         DenseArray <T> array = this._table[row + i];
         if (array != null)
         {
             array.Clear();
         }
     }
 }
예제 #2
0
파일: DataMatrix.cs 프로젝트: Daoting/dt
 public void Clear(int row, int column, int rowCount, int columnCount)
 {
     for (int i = 0; i < rowCount; i++)
     {
         DenseArray <T> array = this.GetRow(i + row, false);
         if (array != null)
         {
             array.Clear(column, columnCount);
         }
     }
 }