[]
Represents a collection of ArticleBead objects owned by an ArticleThread.
public class ThreadArticleBeadCollection : IList<ArticleBead>, ICollection<ArticleBead>, IEnumerable<ArticleBead>, IEnumerable
| Name | Description |
|---|---|
| Count | Gets the number of elements in the collection. |
| this[int] | Gets or sets the element at a specified index. |
| Name | Description |
|---|---|
| Add(ArticleBead) | Adds an object to the end of the collection. |
| Clear() | Removes all elements from the collection. |
| Contains(ArticleBead) | Determines whether an element is in the collection. |
| CopyTo(ArticleBead[], int) | Copies the entire collection into a one-dimensional array, starting at the specified index in the target array. |
| IndexOf(ArticleBead) | Searches for the specified object and returns the zero-based index of the first occurrence within the entire collection. |
| Insert(int, ArticleBead) | Inserts an element into the collection at the specified index. |
| Remove(ArticleBead) | Removes the first occurrence of a specific object from the collection. |
| RemoveAt(int) | Removes the element at the specified index of the collection. |