MooshAsync Method (Delegate, Object) |
Asynchronously runs a function with unlimited arguments.
Namespace: MooshAssembly: Moosh (in Moosh.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static void Async(
Delegate func,
params Object[] args
)
Public Shared Sub Async (
func As Delegate,
ParamArray args As Object()
)
public:
static void Async(
Delegate^ func,
... array<Object^>^ args
)
static member Async :
func : Delegate *
args : Object[] -> unit
Parameters
- func
- Type: SystemDelegate
The function to be run on a different thread. - args
- Type: SystemObject
The arguments to run the action on.
See Also