コード例 #1
0
 /// <summary> Overriding the constructor to accept the filter
 /// </summary>
 public FormScanner(string filter, Parser parser) : base(filter, MATCH_ID, formTagEnders, false)
 {
     stack = new System.Collections.Stack();
     parser.AddScanner(new InputTagScanner("-i"));
 }
コード例 #2
0
 public BulletListScanner(string filter, Parser parser) : base(filter, MATCH_STRING, ENDERS)
 {
     ulli = new System.Collections.Stack();
     parser.AddScanner(new BulletScanner("-bullet", ulli));
 }