Ejemplo n.º 1
0
 /// <summary>
 ///     <para>
 ///       Adds the contents of another <see cref='Telerik.WinControls.XmlSelectorCollection'/> to the end of the collection.
 ///    </para>
 /// </summary>
 /// <param name='value'>
 ///    A <see cref='Telerik.WinControls.XmlSelectorCollection'/> containing the objects to add to the collection.
 /// </param>
 /// <returns>
 ///   <para>None.</para>
 /// </returns>
 public void AddRange(XmlSelectorCollection value)
 {
     for (int i = 0; (i < value.Count); i = (i + 1))
     {
         this.Add(value[i]);
     }
 }
Ejemplo n.º 2
0
 public void AddRange(XmlSelectorCollection value)
 {
     for (int index = 0; index < value.Count; ++index)
     {
         this.Add(value[index]);
     }
 }
Ejemplo n.º 3
0
 /// <summary>
 ///     <para>
 ///       Initializes a new instance of <see cref='Telerik.WinControls.XmlSelectorCollection'/> based on another <see cref='Telerik.WinControls.XmlSelectorCollection'/>.
 ///    </para>
 /// </summary>
 /// <param name='value'>
 ///       A <see cref='Telerik.WinControls.XmlSelectorCollection'/> from which the contents are copied
 /// </param>
 public XmlSelectorCollection(XmlSelectorCollection value)
 {
     this.AddRange(value);
 }
Ejemplo n.º 4
0
 public XmlSelectorEnumerator(XmlSelectorCollection mappings)
 {
     this.temp           = ((IEnumerable)(mappings));
     this.baseEnumerator = temp.GetEnumerator();
 }