Table of Contents
Extension methods for System.Action
public static class ActionExt
Inheritance System.Object ActionExt
Invoke all actions in the list
public static void InvokeAll(this List<Action> actions);
actions
Il2CppSystem.Collections.Generic.List
list of actions to invoke
Invoke all actions in the list
public static void InvokeAll(this List<System.Action> actions);
actions
Il2CppSystem.Collections.Generic.List
list of actions to invoke
Invoke all actions in the list
public static void InvokeAll(this System.Collections.Generic.List<Action> actions);
actions
System.Collections.Generic.List<Il2CppSystem.Action>
list of actions to invoke
Invoke all actions in the list
public static void InvokeAll(this System.Collections.Generic.List<System.Action> actions);
actions
System.Collections.Generic.List<System.Action>
list of actions to invoke
Invoke all actions in the list
public static void InvokeAll<T>(this List<Action<T>> actions, T argument);
T
argument type
actions
Il2CppSystem.Collections.Generic.List
list of actions to invoke
argument
T
argument to pass in while invoking
Invoke all actions in the list
public static void InvokeAll<T>(this List<System.Action<T>> actions, T argument);
T
argument type
actions
Il2CppSystem.Collections.Generic.List
list of actions to invoke
argument
T
argument to pass in while invoking
Invoke all actions in the list
public static void InvokeAll<T>(this System.Collections.Generic.List<Action<T>> actions, T argument);
T
argument type
actions
System.Collections.Generic.List<Il2CppSystem.Action>
list of actions to invoke
argument
T
argument to pass in while invoking
Invoke all actions in the list
public static void InvokeAll<T>(this System.Collections.Generic.List<System.Action<T>> actions, T argument);
T
argument type
actions
System.Collections.Generic.List<System.Action<T>>
list of actions to invoke
argument
T
argument to pass in while invoking
Return this as a System.Action
public static Action ToIl2CppSystemAction(this System.Action action);
action
System.Action