示例#1
0
 public DFAStateTable(CGTStructure structure, int start, int count)
 {
     list = new ArrayList();
     for (int i = start; i < start + count; i++)
     {
         DFAStateRecord dfaState = new DFAStateRecord(structure.Records[i]);
         list.Add(dfaState);
     }
 }
 public DFAStateTable(CGTStructure structure, int start, int count)
 {
     list = new ArrayList();
     for (int i = start; i < start + count; i++)
     {
         DFAStateRecord dfaState = new DFAStateRecord(structure.Records[i]);
         list.Add(dfaState);
     }
 }