/// <summary> /// Adds the items of a <see cref="EmbeddedResourceCollection"/> to the end of the collection. /// </summary> /// <param name="items">The <see cref="EmbeddedResourceCollection"/> to be added to the end of the collection.</param> public void AddRange(EmbeddedResourceCollection items) { for (int i = 0; (i < items.Count); i = (i + 1)) { Add(items[i]); } }
/// <summary> /// Initializes a new instance of the <see cref="EmbeddedResourceEnumerator"/> class /// with the specified <see cref="EmbeddedResourceCollection"/>. /// </summary> /// <param name="arguments">The collection that should be enumerated.</param> internal EmbeddedResourceEnumerator(EmbeddedResourceCollection arguments) { IEnumerable temp = (IEnumerable) (arguments); _baseEnumerator = temp.GetEnumerator(); }
/// <summary> /// Initializes a new instance of the <see cref="EmbeddedResourceEnumerator"/> class /// with the specified <see cref="EmbeddedResourceCollection"/>. /// </summary> /// <param name="arguments">The collection that should be enumerated.</param> internal EmbeddedResourceEnumerator(EmbeddedResourceCollection arguments) { IEnumerable temp = (IEnumerable)(arguments); _baseEnumerator = temp.GetEnumerator(); }