Exemplo n.º 1
0
 public InstructionSet()
 {
     Identify    = new Identify();
     FindList    = new List <Find>();
     ReplaceList = new List <Replace>();
     FillList    = new List <Fill>();
 }
Exemplo n.º 2
0
        public new string ToString()
        {
            string result = "";

            result += "idenfity \n" + Identify.ToString() + "\n\n";
            result += "find\n";
            foreach (var find in FindList)
            {
                result += find.ToString() + "\n";
            }
            result += "\n\n replace\n";
            foreach (var replace in ReplaceList)
            {
                result += replace.ToString() + "\n";
            }
            result += "\n\n fill\n";
            foreach (var fill in FillList)
            {
                result += fill.ToString() + "\n";
            }
            return(result);
        }
Exemplo n.º 3
0
 public bool IsSet()
 {
     return(Identify.IsSet());
 }