using System;
namespace System
{
/// Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.
/// true if meets the criteria defined within the method represented by this delegate; otherwise, false.
/// The object to compare against the criteria defined within the method represented by this delegate.
/// The type of the object to compare.
/// 2
// Token: 0x020006ED RID: 1773
// (Invoke) Token: 0x0600423C RID: 16956
public delegate bool Predicate(T obj);
}