Exemplo n.º 1
0
 protected virtual void OnSet(BreakpointEventArgs e)
 {
     if (Set != null)
     {
         Set(this, e);
     }
 }
Exemplo n.º 2
0
 protected virtual void OnHit(BreakpointEventArgs e)
 {
     if (Hit != null)
     {
         Hit(this, e);
     }
 }