Пример #1
0
        public static void RemoveAll(this Statement stmt, Statement toRemove)
        {
            StatementRemover sr = new StatementRemover()
            {
                Match = toRemove
            };

            stmt.Accept(sr);
        }
Пример #2
0
 public static void RemoveAll(this Statement stmt, Statement toRemove)
 {
     StatementRemover sr = new StatementRemover()
     {
         Match = toRemove
     };
     stmt.Accept(sr);
 }