Ejemplo n.º 1
0
 public override bool IsLinkTarget(ZoneBase other)
 {
     return
         (this.IsLinkableSelfZone && (ZoneBase)this == other
          ||
          this.ForwardZones.Any(zone => zone == other)
         );
 }
Ejemplo n.º 2
0
 abstract public bool IsLinkTarget(ZoneBase other);