Interface IDiff
Defines a difference found during a deep comparison between two objects.
public interface IDiff
- Extension Methods
Properties
Index
Gets the collection index where the difference was found, or null if not applicable.
int? Index { get; }
Property Value
- int?
Message
Gets a description of the difference.
string Message { get; }
Property Value
ObjectName
Gets the name or path of the first object in the comparison.
string ObjectName { get; }
Property Value
OtherObjectName
Gets the name or path of the second object in the comparison.
string OtherObjectName { get; }