Click or drag to resize

DiffMatchPatchDiffMain(String, String) Method

Find the differences between two texts. Run a faster, slightly less optimal diff. This method allows the 'checklines' of DiffMain() to be optional. Most of the time checklines is wanted, so default to true.

Namespace: GSF.Text
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.297-beta+c4c8a839e939f7741977e6b01208d8a074273105
Syntax
public List<Diff> DiffMain(
	string text1,
	string text2
)
View Source

Parameters

text1  String
Old string to be diffed
text2  String
New string to be diffed

Return Value

ListDiff
List of Diff objects
See Also