Пример #1
0
 private static StringInstructionSet GetBatchSet(ICollection <string> set)
 {
     return(new StringInstructionSet
     {
         Filters = StringInstruction.GetFilters(set).ToList(),
         Instructions = StringInstruction.GetInstructions(set).ToList(),
     });
 }
Пример #2
0
 public StringInstructionSet(ICollection <string> set)
 {
     Filters      = StringInstruction.GetFilters(set).ToList();
     Instructions = StringInstruction.GetInstructions(set).ToList();
 }