System.Data.NewDiffgramGen.NewDiffgramGen C# (CSharp) Method

NewDiffgramGen() private method

private NewDiffgramGen ( DataSet ds ) : System.Collections
ds DataSet
return System.Collections
        internal NewDiffgramGen(DataSet ds)
        {
            _ds = ds;
            _dt = null;
            _doc = new XmlDocument();

            for (int i = 0; i < ds.Tables.Count; i++)
            {
                _tables.Add(ds.Tables[i]);
            }
            DoAssignments(_tables);
        }

Same methods

NewDiffgramGen::NewDiffgramGen ( DataTable dt, bool writeHierarchy ) : System.Collections