[]
Encapsulates a method that has a single parameter (passed by reference) and does not return a value.
public delegate void StructAction<T>(ref T item) where T : struct
item TThe parameter of the method that this delegate encapsulates.
TThe type of the parameter of the method that this delegate encapsulates.
public StructAction(object @object, IntPtr method)
object objectmethod System.IntPtrpublic virtual IAsyncResult BeginInvoke(ref T item, AsyncCallback callback, object @object)
item Tcallback System.AsyncCallbackobject objectpublic virtual void EndInvoke(ref T item, IAsyncResult result)
item Tresult System.IAsyncResultpublic virtual void Invoke(ref T item)
item T