[]
Represents a collection of collections of string values.
public class StringCollectionCollection : IList, ICollection, IList<StringCollectionItem>, ICollection<StringCollectionItem>, IEnumerable<StringCollectionItem>, IEnumerable, ISerializable
Public Class StringCollectionCollection
Implements IList, ICollection, IList(Of StringCollectionItem), ICollection(Of StringCollectionItem), IEnumerable(Of StringCollectionItem), IEnumerable, ISerializable
| Name | Description |
|---|---|
| StringCollectionCollection() | Creates a new collection of collections. |
| StringCollectionCollection(SerializationInfo, StreamingContext) | Creates a new StringCollectionCollection from serialization. |
| Name | Description |
|---|---|
| Count | Gets the number of items in the collecion. |
| DataSource | Gets or sets the data source for the collection of collections of string values. |
| this[int] | Gets or sets the item at the specified index. |
| Name | Description |
|---|---|
| Add(StringCollectionItem) | Adds an item to the collection. |
| AddRange(StringCollectionItem[]) | Adds an array of items to the collection. |
| Clear() | Removes all items from the collection. |
| Contains(StringCollectionItem) | Determines whether the collection contains a specific item. |
| CopyTo(StringCollectionItem[], int) | Copies the items in the collection to an array, starting at the specified array index. |
| GetEnumerator() | Gets an enumerator that iterates through the collection. |
| GetObjectData(SerializationInfo, StreamingContext) | Populates a SerializationInfo with the data needed to serialize the target object. |
| IndexOf(StringCollectionItem) | Determines the index of the item in the collection. |
| Insert(int, StringCollectionItem) | Inserts an item into the collection at the specified index. |
| InsertRange(int, StringCollectionItem[]) | Inserts an array of items into the collection at the specified index. |
| OnChanged(EventArgs) | Raises the Changed event. |
| Remove(StringCollectionItem) | Removes an item from the collection. |
| RemoveAt(int) | Removes an item from the collection at the specified index. |
| Name | Description |
|---|---|
| Changed | Occurs when the collection is changed. |