Share via


ContinueDifferencePredicate<T> Delegate

Namespace:  Microsoft.TeamFoundation.Diff
Assembly:  Microsoft.TeamFoundation.Diff (in Microsoft.TeamFoundation.Diff.dll)

Syntax

'Declaration
Public Delegate Function ContinueDifferencePredicate(Of T) ( _
    originalIndex As Integer, _
    originalSequence As IList(Of T), _
    longestMatchSoFar As Integer _
) As Boolean
public delegate bool ContinueDifferencePredicate<T>(
    int originalIndex,
    IList<T> originalSequence,
    int longestMatchSoFar
)
generic<typename T>
public delegate bool ContinueDifferencePredicate(
    int originalIndex, 
    IList<T>^ originalSequence, 
    int longestMatchSoFar
)
type ContinueDifferencePredicate = 
    delegate of  
        originalIndex:int * 
        originalSequence:IList<'T> * 
        longestMatchSoFar:int -> bool
JScript does not support generic types or methods.

Type Parameters

  • T

Parameters

Return Value

Type: System.Boolean

See Also

Reference

Microsoft.TeamFoundation.Diff Namespace