Mercurial > pub > ImplabNet
view Implab.Fx.Test/Sample/MainForm.cs @ 15:0f982f9b7d4d promises
implemented parallel map and foreach for arrays
rewritten WorkerPool with MTQueue for more efficiency
author | cin |
---|---|
date | Thu, 07 Nov 2013 03:41:32 +0400 |
parents | f2559580b481 |
children |
line wrap: on
line source
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace Implab.Fx.Test.Sample { public partial class MainForm : Form { public event EventHandler ButtonEvent; public MainForm() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { EventHandler temp = ButtonEvent; if (temp != null) { temp(this,new EventArgs()); } } } }