System.Data.RecordManager.SetRowCache C# (CSharp) Method

SetRowCache() private method

private SetRowCache ( DataRow newRows ) : void
newRows DataRow
return void
        internal void SetRowCache(DataRow[] newRows)
        {
            _rows = newRows;
            _lastFreeRecord = _rows.Length;
            _recordCapacity = _lastFreeRecord;
        }