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
- originalIndex
Type: System.Int32
- originalSequence
Type: System.Collections.Generic.IList<T>
- longestMatchSoFar
Type: System.Int32
Return Value
Type: System.Boolean