PhotoCommentInfoCollection µÄժҪ˵Ã÷¡£
Inheritance: System.Collections.CollectionBase
		/// <summary>
		/// Adds the contents of another <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> to the end of the collection.
		/// </summary>
		/// <param name="value">A <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> containing the Components to add to the collection. </param>
		public void AddRange(PhotoCommentInfoCollection value) 
		{
			for (int i = 0;	(i < value.Count); i = (i +	1))	
			{
				this.Add((PhotoCommentInfo)value.List[i]);
			}
		}
 /// <summary>
 /// Adds the contents of another <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> to the end of the collection.
 /// </summary>
 /// <param name="value">A <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> containing the Components to add to the collection. </param>
 public void AddRange(PhotoCommentInfoCollection value)
 {
     for (int i = 0; (i < value.Count); i = (i + 1))
     {
         this.Add((PhotoCommentInfo)value.List[i]);
     }
 }
		/// <summary>
		/// Initializes a new instance of the <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> class containing the elements of the specified source collection.
		/// </summary>
		/// <param name="value">A <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> with which to initialize the collection.</param>
		public PhotoCommentInfoCollection(PhotoCommentInfoCollection value)	
		{
			this.AddRange(value);
		}
			/// <summary>
			/// Initializes a new instance of the <see cref="PhotoCommentInfoCollectionEnumerator">PhotoCommentInfoCollectionEnumerator</see> class referencing the specified <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> object.
			/// </summary>
			/// <param name="mappings">The <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> to enumerate.</param>
			public PhotoCommentInfoCollectionEnumerator(PhotoCommentInfoCollection mappings)
			{
				_temp =	((IEnumerable)(mappings));
				_enumerator = _temp.GetEnumerator();
			}
 /// <summary>
 /// Initializes a new instance of the <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> class containing the elements of the specified source collection.
 /// </summary>
 /// <param name="value">A <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> with which to initialize the collection.</param>
 public PhotoCommentInfoCollection(PhotoCommentInfoCollection value)
 {
     this.AddRange(value);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="PhotoCommentInfoCollectionEnumerator">PhotoCommentInfoCollectionEnumerator</see> class referencing the specified <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> object.
 /// </summary>
 /// <param name="mappings">The <see cref="PhotoCommentInfoCollection">PhotoCommentInfoCollection</see> to enumerate.</param>
 public PhotoCommentInfoCollectionEnumerator(PhotoCommentInfoCollection mappings)
 {
     _temp       = ((IEnumerable)(mappings));
     _enumerator = _temp.GetEnumerator();
 }