using System;
using Cpp2IlInjected;
namespace System
{
/// Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.
/// The object to compare against the criteria defined within the method represented by this delegate.
/// The type of the object to compare.
///
/// if meets the criteria defined within the method represented by this delegate; otherwise, .
// Token: 0x020000AB RID: 171
// (Invoke) Token: 0x060004D6 RID: 1238
[Token(Token = "0x20000AB")]
public delegate bool Predicate(T obj);
}