/// <summary>
 /// Initializes a new instance of the StatementCollection class, containing elements
 /// copied from another instance of StatementCollection
 /// </summary>
 /// <param name="items">
 /// The StatementCollection whose elements are to be added to the new StatementCollection.
 /// </param>
 public StatementCollection(StatementCollection items)
 {
     this.AddRange(items);
 }
 public Enumerator(StatementCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }