Beispiel #1
0
    public bool IsGoodSyntax(FootPrint footprint)
    {
        /*
         *      foreach (var good_footprint in good_footprints)
         *      {
         *          if (footprint.Match(good_footprint))
         *          {
         *              return true;
         *          }
         *      }
         *
         *      return false;
         */

        return(footprint.Match(trie));;
    }