Exemplo n.º 1
0
 /// <summary>
 ///     Adds the contents of another 'AffixEntryCollection' at the end of this instance.
 /// </summary>
 /// <param name='value'>
 ///     A 'AffixEntryCollection' containing the objects to add to the collection.
 /// </param>
 public void AddRange(AffixEntryCollection value)
 {
     for (int Counter = 0; (Counter < value.Count); Counter = (Counter + 1))
     {
         this.Add(value[Counter]);
     }
 }
Exemplo n.º 2
0
		/// <summary>
		///     Enumerator constructor
		/// </summary>
		public AffixEntryEnumerator(AffixEntryCollection mappings) 
		{
			this.Local = ((System.Collections.IEnumerable)(mappings));
			this.Base = Local.GetEnumerator();
		}
 /// <summary>
 ///     Initializes a new instance of 'AffixEntryCollection' based on an already existing instance.
 /// </summary>
 /// <param name='value'>
 ///     A 'AffixEntryCollection' from which the contents is copied
 /// </param>
 public AffixEntryCollection(AffixEntryCollection value)
 {
     this.AddRange(value);
 }
 /// <summary>
 ///     Adds the contents of another 'AffixEntryCollection' at the end of this instance.
 /// </summary>
 /// <param name='value'>
 ///     A 'AffixEntryCollection' containing the objects to add to the collection.
 /// </param>
 public void AddRange(AffixEntryCollection value)
 {
     for (int Counter = 0; (Counter < value.Count); Counter = (Counter + 1))
     {
         this.Add(value[Counter]);
     }
 }
Exemplo n.º 5
0
 /// <summary>
 ///     Initializes a new instance of 'AffixEntryCollection' based on an already existing instance.
 /// </summary>
 /// <param name='value'>
 ///     A 'AffixEntryCollection' from which the contents is copied
 /// </param>
 public AffixEntryCollection(AffixEntryCollection value)
 {
     this.AddRange(value);
 }
Exemplo n.º 6
0
 /// <summary>
 ///     Enumerator constructor
 /// </summary>
 public AffixEntryEnumerator(AffixEntryCollection mappings)
 {
     this.Local = ((System.Collections.IEnumerable)(mappings));
     this.Base  = Local.GetEnumerator();
 }