|
DiffMatchPatchDiffCharsToLines Method
|
Rehydrate the text in a diff from a string of line hashes to real lines
of text.
Namespace: GSF.TextAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.246-beta+ff392465a0262ee2737937d4127fc3c2f08c6dcd
Syntaxprotected void DiffCharsToLines(
ICollection<Diff> diffs,
IList<string> lineArray
)
Protected Sub DiffCharsToLines (
diffs As ICollection(Of Diff),
lineArray As IList(Of String)
)
protected:
void DiffCharsToLines(
ICollection<Diff^>^ diffs,
IList<String^>^ lineArray
)
member DiffCharsToLines :
diffs : ICollection<Diff> *
lineArray : IList<string> -> unit
function DiffCharsToLines(diffs, lineArray);
View SourceParameters
- diffs ICollectionDiff
- List of Diff objects
- lineArray IListString
- List of unique strings
See Also