MethodInvoker Delegate

 

Represents a delegate that can execute any method in managed code that is declared void and takes no parameters.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public delegate void MethodInvoker()

MethodInvoker provides a simple delegate that is used to invoke a method with a void parameter list. This delegate can be used when making calls to a control's Invoke method, or when you need a simple delegate but do not want to define one yourself.

The following code example demonstrates how to use a MethodInvoker to call a method that updates the title bar of the application form.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: