IDifferenceService::DifferenceSequences<T> Method (IList<T>^, IList<T>^)

 

Calculates the differences between the two sequences.

Namespace:   Microsoft.VisualStudio.Text.Differencing
Assembly:  Microsoft.VisualStudio.Text.Data (in Microsoft.VisualStudio.Text.Data.dll)

generic<typename T>
IDifferenceCollection<T>^ DifferenceSequences(
	IList<T>^ left,
	IList<T>^ right
)

Parameters

left
Type: System.Collections.Generic::IList<T>^

The left sequence. In most cases this is the "old" sequence.

right
Type: System.Collections.Generic::IList<T>^

The right sequence. In most cases this is the "new" sequence.

Return Value

Type: Microsoft.VisualStudio.Text.Differencing::IDifferenceCollection<T>^

A collection of the differences between the two sequences.

Type Parameters

T

The type of the sequences.

Return to top
Show: