This is an old revision of the document!


Actions

Definition

Action<int> example1 =
   (int x) => Console.WriteLine("Write {0}", x);
Action<int, int> example2 =
   (x, y) => Console.WriteLine("Write {0} and {1}", x, y);
Action example3 =  
   () => Console.WriteLine("Done");
Using Actions to Communicate Between Background Worker and Main Threads
using System.Windows.Threading;
 
public partial class MyWindow : Window
{
  public MyWindow()
  {
    InitializeComponent();
    new Thread (Work).Start();
  }
 
  void Work()
  {
    Thread.Sleep (5000);           // Simulate time-consuming task
    UpdateMessage ("The answer");
  }
 
  void UpdateMessage (string message)
  {
    Action action = () => txtMessage.Text = message;
    Dispatcher.Invoke (action);
  }
}

Source:

Resources