Esempio n. 1
0
 private static void OnCallingSuperVisor(Object sender, CallingSuperVisorEventArgs e)
 {
     if (CallingSuperVisor != null)
     {
         CallingSuperVisor(null, e);
     }
 }
Esempio n. 2
0
 private void OnCallingSuperVisor(Object sender, CallingSuperVisorEventArgs e)
 {
     if (CallingSuperVisor != null)
     {
         CallingSuperVisor(this, e);
     }
 }
Esempio n. 3
0
 private static void OnCallingSuperVisor(Word operand)
 {
     if (CallingSuperVisor != null)
     {
         CallingSuperVisorEventArgs e = new CallingSuperVisorEventArgs(operand);
         CallingSuperVisor(null, e);
     }
 }
Esempio n. 4
0
 internal void OnCallingSuperVisor(Object sender, CallingSuperVisorEventArgs e)
 {
     //
 }