public GeneratorCommandEnumerator(GeneratorCommandCollection mappings)
			{
				this.temp = ((IEnumerable)(mappings));
				this.baseEnumerator = temp.GetEnumerator();
			}
		/// <summary>
		///     <para>
		///       Initializes a new instance of <see cref='GeneratorCommandCollection'/> based on another <see cref='GeneratorCommandCollection'/>.
		///    </para>
		/// </summary>
		/// <param name='value'>
		///       A <see cref='GeneratorCommandCollection'/> from which the contents are copied
		/// </param>
		public GeneratorCommandCollection(GeneratorCommandCollection val)
		{
			this.AddRange(val);
		}
		/// <summary>
		///     <para>
		///       Adds the contents of another <see cref='GeneratorCommandCollection'/> to the end of the collection.
		///    </para>
		/// </summary>
		/// <param name='value'>
		///    A <see cref='GeneratorCommandCollection'/> containing the objects to add to the collection.
		/// </param>
		/// <returns>
		///   <para>None.</para>
		/// </returns>
		/// <seealso cref='GeneratorCommandCollection.Add'/>
		public void AddRange(GeneratorCommandCollection val)
		{
			for (int i = 0; i < val.Count; i++)
			{
				this.Add(val[i]);
			}
		}