StringCollection Class

A type-safe collection of String objects

Definition

Namespace: EWSoftware.ListControls
Assembly: EWSoftware.ListControls (in EWSoftware.ListControls.dll) Version: 2023.4.9.0
[SerializableAttribute]
public class StringCollection : Collection<string>
Inheritance
Object    CollectionString    StringCollection

Constructors

StringCollection Default constructor
StringCollection(IEnumerableString) Construct collection from an enumerable list of String objects

Properties

CountGets the number of elements actually contained in the CollectionT.
(Inherited from CollectionString)
ItemGets or sets the element at the specified index.
(Inherited from CollectionString)
ItemsGets a IListT wrapper around the CollectionT.
(Inherited from CollectionString)

Methods

AddAdds an object to the end of the CollectionT.
(Inherited from CollectionString)
AddRange Add a range of String objects
ClearRemoves all elements from the CollectionT.
(Inherited from CollectionString)
ClearItems This is overridden to raise the ListChanged event.
(Overrides CollectionTClearItems)
ContainsDetermines whether an element is in the CollectionT.
(Inherited from CollectionString)
CopyToCopies the entire CollectionT to a compatible one-dimensional Array, starting at the specified index of the target array.
(Inherited from CollectionString)
EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
FinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
GetEnumeratorReturns an enumerator that iterates through the CollectionT.
(Inherited from CollectionString)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
IndexOfSearches for the specified object and returns the zero-based index of the first occurrence within the entire CollectionT.
(Inherited from CollectionString)
InsertInserts an element into the CollectionT at the specified index.
(Inherited from CollectionString)
InsertItem This is overridden to raise the ListChanged event.
(Overrides CollectionTInsertItem(Int32, T))
MemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
OnListChanged This raises the ListChanged event
RemoveRemoves the first occurrence of a specific object from the CollectionT.
(Inherited from CollectionString)
RemoveAtRemoves the element at the specified index of the CollectionT.
(Inherited from CollectionString)
RemoveItem This is overridden to raise the ListChanged event.
(Overrides CollectionTRemoveItem(Int32))
RemoveRange Remove a range of items from the collection
SetItem This is overridden to raise the ListChanged event.
(Overrides CollectionTSetItem(Int32, T))
Sort This is used to sort the collection in ascending or descending order
ToStringReturns a string that represents the current object.
(Inherited from Object)

Events

ListChanged This event is raised when an item is added or removed from the list, when the list is cleared, and when an item is replaced in the list.

See Also