This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
using System;
using Cpp2IlInjected;
namespace System
{
/// <summary>Represents the method that defines a set of criteria and determines whether the specified object meets those criteria.</summary>
/// <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>
/// <returns>
/// <see langword="true" /> if <paramref name="obj" /> meets the criteria defined within the method represented by this delegate; otherwise, <see langword="false" />.</returns>
// Token: 0x020000B2 RID: 178
// (Invoke) Token: 0x060004F1 RID: 1265
[Token(Token = "0x20000B2")]
public delegate bool Predicate<in T>(T obj);
}