This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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);
}