Exemplo n.º 1
0
 public void RemoveOnDetonatingDelegate(Detonator.OnDetonating del)
 {
     this.OnDetonatingDelegates = (Detonator.OnDetonating)Delegate.Remove(this.OnDetonatingDelegates, del);
 }
Exemplo n.º 2
0
 public void SetOnDetonatingDelegate(Detonator.OnDetonating del)
 {
     this.OnDetonatingDelegates = del;
 }
Exemplo n.º 3
0
 public void AddOnDetonatingDelegate(Detonator.OnDetonating del)
 {
     this.OnDetonatingDelegates = (Detonator.OnDetonating)Delegate.Combine(this.OnDetonatingDelegates, del);
 }