[]
Represents the method that defines a set of criteria and determines whether the specified struct meets those criteria.
public delegate bool StructPredicate<T>(in T item) where T : struct
item TThe struct to compare against the criteria defined within the method represented by this delegate.
true if item meets the criteria defined within the method represented by this delegate; otherwise, false.
TThe type of the struct to compare.
public StructPredicate(object @object, IntPtr method)
object objectmethod System.IntPtrpublic virtual IAsyncResult BeginInvoke(in T item, AsyncCallback callback, object @object)
item Tcallback System.AsyncCallbackobject objectpublic virtual bool EndInvoke(in T item, IAsyncResult result)
item Tresult System.IAsyncResultpublic virtual bool Invoke(in T item)
item T