Exemplo n.º 1
0
        public static Comma Create()
        {
            var c = new Comma();
            c.Value = ",";

            return c;
        }
Exemplo n.º 2
0
        public static Comma Create()
        {
            var c = new Comma();

            c.Value = ",";

            return(c);
        }
Exemplo n.º 3
0
        public void Append(SelectList last)
        {
            SelectList ll, sl;

            ll = sl = this;
            while ((ll = sl.FindDescendant <SelectList>()) != null)
            {
                sl = ll;
            }

            sl.Stack.AddLast(Comma.Create());
            sl.Stack.AddLast(CommentOrWhitespace.Create(Whitespace.Create()));
            sl.Stack.AddLast(last);
        }