public unionstatement(selectstatements selects, orderbystatement orderby) : this(false, selects, orderby) { }
public new orderbystatement OrderBy; /* a good example of meaningful shadowing */ public unionstatement(bool all, selectstatements selects, orderbystatement orderby) { All = all; Selects = selects; OrderBy = orderby; }