C# Class NetDiff.Model.ObjectDiff

Inheritance: BaseDiff
ファイルを表示 Open project: etkirsch/NetDiff Class Usage Examples

Public Properties

Property Type Description
Items IEnumerable

Public Methods

Method Description
Equals ( dynamic baseObj, dynamic evaluatedObj ) : bool
ObjectDiff ( object baseObj = null, object eval = null, IEnumerable items = null, DiffMessage message = DiffMessage.NotApplicable ) : System.Collections.Generic
WithoutMatching ( ) : List

This will remove any Diffed items that have matching a/b values. So only what is incorrect will remain. This will make hunting down problems much quicker.

Method Details

Equals() public method

public Equals ( dynamic baseObj, dynamic evaluatedObj ) : bool
baseObj dynamic
evaluatedObj dynamic
return bool

ObjectDiff() public method

public ObjectDiff ( object baseObj = null, object eval = null, IEnumerable items = null, DiffMessage message = DiffMessage.NotApplicable ) : System.Collections.Generic
baseObj object
eval object
items IEnumerable
message DiffMessage
return System.Collections.Generic

WithoutMatching() public method

This will remove any Diffed items that have matching a/b values. So only what is incorrect will remain. This will make hunting down problems much quicker.
public WithoutMatching ( ) : List
return List

Property Details

Items public_oe property

public IEnumerable Items
return IEnumerable