System.Data.DataTableCollection.ReplaceFromInference C# (CSharp) Method

ReplaceFromInference() private method

private ReplaceFromInference ( List tableList ) : void
tableList List
return void
        internal void ReplaceFromInference(List<DataTable> tableList)
        {
            Debug.Assert(_list.Count == tableList.Count, "Both lists should have equal numbers of tables");
            _list.Clear();
            _list.AddRange(tableList);
        }