Пример #1
0
 public unionstatement(selectstatements selects, orderbystatement orderby) : this(false, selects, orderby)
 {
 }
Пример #2
0
        public new orderbystatement OrderBy; /* a good example of meaningful shadowing */

        public unionstatement(bool all, selectstatements selects, orderbystatement orderby)
        {
            All     = all;
            Selects = selects;
            OrderBy = orderby;
        }