|
DiffMatchPatchDiffBisect Method
|
Find the 'middle snake' of a diff, split the problem in two
and return the recursively constructed diff.
See Myers 1986 paper: An O(ND) Difference Algorithm and Its Variations.
Namespace: GSF.TextAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.316-beta+461e40cb239c8ff1c2b7471a13bb1d1852a92e83
Syntaxfunction DiffBisect(text1, text2, deadline);
View SourceParameters
- text1 String
- Old string to be diffed
- text2 String
- New string to be diffed
- deadline DateTime
- Time at which to bail if not yet complete
Return Value
ListDiffList of Diff objects
See Also