JsonDiffOutputGenerator.GenerateOutput

GenerateOutput(List<DiffOperation>)

Generates the output of the differences between texts and saves it to a file.

public string GenerateOutput(List<DiffOperation> diffrences)
ParameterTypeDescription
diffrencesList`1The list of differences between texts.

Return Value

JSON text.

See Also


GenerateOutput(List<List<DiffOperation>>)

Generates the output of the differences between texts and saves it to a file.

public string GenerateOutput(List<List<DiffOperation>> diffrences)
ParameterTypeDescription
diffrencesList`1The list of differences between texts.

Return Value

JSON text.

See Also


GenerateOutput(List<DiffOperation>, string)

Generates the output of the differences between texts and saves it to a file.

public void GenerateOutput(List<DiffOperation> diffrences, string targetFilePath)
ParameterTypeDescription
diffrencesList`1The list of differences between texts.
targetFilePathStringThe path of the target file to save the output.

See Also


GenerateOutput(List<List<DiffOperation>>, string)

Generates the output of the differences between texts and saves it to a file.

public void GenerateOutput(List<List<DiffOperation>> diffrences, string targetFilePath)
ParameterTypeDescription
diffrencesList`1The list of differences between texts.
targetFilePathStringThe path of the target file to save the output.

See Also