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