Ejemplo n.º 1
0
 public Bat(BatCallBack callbackDelegate)
 {
     this.hitBallCallBack = new BatCallBack(callbackDelegate);
 }
Ejemplo n.º 2
0
 internal Bat(BatCallBack callBackDelegate)
 {
     // I use operator '=' instaed of '=+' becouse I want to inform only one ball
     this.hitBallCallback = callBackDelegate;
 }