Files
2026-06-04 11:42:34 +02:00

14 lines
690 B
C#

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