DataRowComparer<TRow>::Equals Method (TRow, TRow)
.NET Framework (current version)
Compares two DataRow objects by using a column-by-column, value-based comparison.
Assembly: System.Data.DataSetExtensions (in System.Data.DataSetExtensions.dll)
Parameters
Return Value
Type: System::Booleantrue if the two DataRow objects have ordered sets of column values that are equal; otherwise, false.
Implements
IEqualityComparer<T>::Equals(T, T)| Exception | Condition |
|---|---|
| ArgumentNullException | One or both of the source DataRow objects are null. |
The schema of the two DataRow objects is not checked. If both DataRow objects have exactly the same ordered set of column values, they are considered equal.
Only the current values of the DataRow objects are checked. The state of the DataRow objects is not checked.
The M:System.Data.DataRowComparer.Equals method is the value-based comparison implementation of the Equals method.
.NET Framework
Available since 3.5
Available since 3.5
Show: