Example #1
0
 private void btnArea_Click(object sender, EventArgs e)
 {
     //Bind the delegate to a gardenmanager method
     gd = new GardenDelegate(gardenManager.IterateGetArea);
     //'activate' garden delegate and pass it the required arg
     gd(listBox1);
 }
Example #2
0
 private void btnCharges_Click(object sender, EventArgs e)
 {
     gd = new GardenDelegate(gardenManager.IterateGetBalance);
     gd(listBox1);
 }