adTempus API
ArcanaDevelopment.adTempus.Shared Namespace / JobVariableHelper Class / CompareCollections Method
A collection of variables that exist in the target collection but not in the current collection, or that exist in both collections but have different values.
A collection of variables that exist in the current collection but not in the target collection.

In This Topic
    CompareCollections Method
    In This Topic
    Compares this JobVariableCollection to another and returns collections containing changes (additions and modifications) and deletions.
    Syntax
    'Declaration
     
    
    Public Shared Sub CompareCollections( _
       ByVal source As IEnumerable, _
       ByVal target As IEnumerable, _
       ByVal changes As IList, _
       ByVal deletions As IList _
    ) 
    public static void CompareCollections( 
       IEnumerable source,
       IEnumerable target,
       IList changes,
       IList deletions
    )

    Parameters

    source
    target
    changes
    A collection of variables that exist in the target collection but not in the current collection, or that exist in both collections but have different values.
    deletions
    A collection of variables that exist in the current collection but not in the target collection.
    See Also