this class is still work in progress more documentation to follow ...
Namespace:
CA.Common.DataAssembly: CA.Common (in CA.Common.dll) Version: 1.0.0.0 (1.0.0.0)
Remarks
source code:
//Source code from the Code Associate C# code library, Full documentation and latest updates can be found //@ http://www.codeassociate.com/caapi/ using System.Collections.Generic; using System.Data; using CA.Common.Text; namespace CA.Common.Data { - #region RowDiffrences public class RowDiffrences { public DataRow FirstDataRow; public DataRow SecondDataRow; public StringCollection ColumnsWithDiffrences = new StringCollection(); } #endregion public class DataRowCollection : List<DataRow> { } public class RowDiffrencesCollection :List<RowDiffrences> { } public class DataTableComparerResult { public DataRowCollection RowsOnlyInTable1 = new DataRowCollection(); public DataRowCollection RowsOnlyInTable2 = new DataRowCollection(); public RowDiffrencesCollection RowsWithDiffrences = new RowDiffrencesCollection(); } }