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