Ejemplo n.º 1
0
 public bool Triumphs(HandlerWithPriority other)
 {
     if (priority > other.priority)
     {
         return(true);
     }
     if (priority == other.priority && priority > 0)
     {
         return(true);
     }
     return(false);
 }
Ejemplo n.º 2
0
			public bool Triumphs(HandlerWithPriority other)
			{
				if (priority > other.priority)
				{
					return true;
				}
				if (priority == other.priority && priority > 0)
				{
					return true;
				}
				return false;
			}