Example #1
0
 /// <summary>
 /// Adds the contents of another <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> to the end of the collection.
 /// </summary>
 /// <param name="value">A <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> containing the Components to add to the collection. </param>
 public void AddRange(ShowforumPageTopicInfoCollection value)
 {
     for (int i = 0; (i < value.Count); i = (i + 1))
     {
         this.Add((ShowforumPageTopicInfo)value.List[i]);
     }
 }
		/// <summary>
		/// Adds the contents of another <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> to the end of the collection.
		/// </summary>
		/// <param name="value">A <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> containing the Components to add to the collection. </param>
		public void AddRange(ShowforumPageTopicInfoCollection value) 
		{
			for (int i = 0;	(i < value.Count); i = (i +	1))	
			{
				this.Add((ShowforumPageTopicInfo)value.List[i]);
			}
		}
		/// <summary>
		/// Initializes a new instance of the <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> class containing the elements of the specified source collection.
		/// </summary>
		/// <param name="value">A <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> with which to initialize the collection.</param>
		public ShowforumPageTopicInfoCollection(ShowforumPageTopicInfoCollection value)	
		{
			this.AddRange(value);
		}
			/// <summary>
			/// Initializes a new instance of the <see cref="ShowforumPageTopicInfoCollectionEnumerator">ShowforumPageTopicInfoCollectionEnumerator</see> class referencing the specified <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> object.
			/// </summary>
			/// <param name="mappings">The <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> to enumerate.</param>
			public ShowforumPageTopicInfoCollectionEnumerator(ShowforumPageTopicInfoCollection mappings)
			{
				_temp =	((IEnumerable)(mappings));
				_enumerator = _temp.GetEnumerator();
			}
Example #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> class containing the elements of the specified source collection.
 /// </summary>
 /// <param name="value">A <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> with which to initialize the collection.</param>
 public ShowforumPageTopicInfoCollection(ShowforumPageTopicInfoCollection value)
 {
     this.AddRange(value);
 }
Example #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ShowforumPageTopicInfoCollectionEnumerator">ShowforumPageTopicInfoCollectionEnumerator</see> class referencing the specified <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> object.
 /// </summary>
 /// <param name="mappings">The <see cref="ShowforumPageTopicInfoCollection">ShowforumPageTopicInfoCollection</see> to enumerate.</param>
 public ShowforumPageTopicInfoCollectionEnumerator(ShowforumPageTopicInfoCollection mappings)
 {
     _temp       = ((IEnumerable)(mappings));
     _enumerator = _temp.GetEnumerator();
 }