File: System\Workflow\ComponentModel\Design\ActivityComparer.cs
Project: ndp\cdf\src\NetFx35\System.WorkflowServices\System.WorkflowServices.csproj (System.WorkflowServices)
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//------------------------------------------------------------
namespace System.Workflow.ComponentModel.Design
{
    using System.Workflow.ComponentModel;
 
    internal delegate bool ActivityComparer<TActivity>(TActivity source, TActivity target) where TActivity : Activity;
 
}