A collection of elements of type AtomCategory
Inheritance: System.Collections.CollectionBase
コード例 #1
0
ファイル: Atom10.cs プロジェクト: vnextcoder/dasblog-core
 /// <summary>
 /// Adds the elements of another AtomCategoryCollection to the end of this AtomCategoryCollection.
 /// </summary>
 /// <param name="entries">
 /// The AtomCategoryCollection whose elements are to be added to the end of this AtomCategoryCollection.
 /// </param>
 public virtual void AddRange(AtomCategoryCollection entries)
 {
     foreach (AtomCategory entry in entries)
     {
         this.List.Add(entry);
     }
 }
コード例 #2
0
ファイル: Atom10.cs プロジェクト: vnextcoder/dasblog-core
 public Enumerator(AtomCategoryCollection collection)
 {
     this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
 }
コード例 #3
0
ファイル: Atom10.cs プロジェクト: vnextcoder/dasblog-core
 /// <summary>
 /// Initializes a new instance of the AtomCategoryCollection class, containing elements
 /// copied from another instance of AtomCategoryCollection
 /// </summary>
 /// <param name="entries">
 /// The AtomCategoryCollection whose elements are to be added to the new AtomCategoryCollection.
 /// </param>
 public AtomCategoryCollection(AtomCategoryCollection entries)
 {
     this.AddRange(entries);
 }
コード例 #4
0
ファイル: Atom10.cs プロジェクト: plntxt/dasblog
		/// <summary>
		/// Adds the elements of another AtomCategoryCollection to the end of this AtomCategoryCollection.
		/// </summary>
		/// <param name="entries">
		/// The AtomCategoryCollection whose elements are to be added to the end of this AtomCategoryCollection.
		/// </param>
		public virtual void AddRange(AtomCategoryCollection entries)
		{
			foreach (AtomCategory entry in entries)
			{
				this.List.Add(entry);
			}
		}
コード例 #5
0
ファイル: Atom10.cs プロジェクト: plntxt/dasblog
		/// <summary>
		/// Initializes a new instance of the AtomCategoryCollection class, containing elements
		/// copied from another instance of AtomCategoryCollection
		/// </summary>
		/// <param name="entries">
		/// The AtomCategoryCollection whose elements are to be added to the new AtomCategoryCollection.
		/// </param>
		public AtomCategoryCollection(AtomCategoryCollection entries)
		{
			this.AddRange(entries);
		}
コード例 #6
0
ファイル: Atom10.cs プロジェクト: plntxt/dasblog
			public Enumerator(AtomCategoryCollection collection)
			{
				this.wrapped = ((System.Collections.CollectionBase)collection).GetEnumerator();
			}