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