Table of Contents

Interface IDiff

Namespace
Tharga.Toolkit.Compare
Assembly
Tharga.Toolkit.Standard.dll

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

string

ObjectName

Gets the name or path of the first object in the comparison.

string ObjectName { get; }

Property Value

string

OtherObjectName

Gets the name or path of the second object in the comparison.

string OtherObjectName { get; }

Property Value

string