Exemplo n.º 1
0
        private void RecordForCondition(string markup, string collectionName, string variableName, Dictionary <string, string> attributes)
        {
            var block = new ForCondition {
                CollectionName = collectionName, Attributes = attributes, ContinueVariableName = variableName
            };

            //block.Attach(NodeList);
            _blocks.Add(block);
            NodeList = block.Attach(new List <object>());
        }