System.Data.DataTableCollection.ReplaceFromInference C# (CSharp) Méthode

ReplaceFromInference() private méthode

private ReplaceFromInference ( List tableList ) : void
tableList List
Résultat 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);
        }