Ejemplo n.º 1
0
 public static LogicEvent operator +(LogicEvent Left, LogicMethodInterface Right)
 {
     if (Left == null)
     {
         Left = new LogicEvent();
     }
     Left.Add((LogicHandler)Right);
     return(Left);
 }
Ejemplo n.º 2
0
 public static LogicEvent operator +(LogicEvent Left, LogicHandler Right)
 {
     if (Left == null)
     {
         Left = new LogicEvent();
     }
     Left.Add(Right);
     return(Left);
 }