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