Contains(T)
|
Determines whether an element is in the ReadOnlyCollection<T>.
|
CopyTo(T[], Int32)
|
Copies the entire ReadOnlyCollection<T> to a compatible one-dimensional Array, starting at the specified index of the target array.
|
Equals(Object)
|
Determines whether the specified object is equal to the current object.
|
Equals(Object, Object)
|
Determines whether the specified object instances are considered equal.
|
GetEnumerator()
|
Returns an enumerator that iterates through the ReadOnlyCollection<T>.
|
GetHashCode()
|
Serves as the default hash function.
|
GetType()
|
Gets the Type of the current instance.
|
IndexOf(T)
|
Searches for the specified object and returns the zero-based index of the first occurrence within the entire ReadOnlyCollection<T>.
|
MemberwiseClone()
|
Creates a shallow copy of the current Object.
|
ReferenceEquals(Object, Object)
|
Determines whether the specified Object instances are the same instance.
|
ICollection<T>.Add(T)
|
Adds an item to the ICollection<T>. This implementation always throws NotSupportedException.
|
ICollection<T>.Clear()
|
Removes all items from the ICollection<T>. This implementation always throws NotSupportedException.
|
ICollection<T>.Remove(T)
|
Removes the first occurrence of a specific object from the ICollection<T>. This implementation always throws NotSupportedException.
|
IList<T>.Insert(Int32, T)
|
Inserts an item to the IList<T> at the specified index. This implementation always throws NotSupportedException.
|
IList<T>.RemoveAt(Int32)
|
Removes the IList<T> item at the specified index. This implementation always throws NotSupportedException.
|
ICollection.CopyTo(Array, Int32)
|
Copies the elements of the ICollection to an Array, starting at a particular Array index.
|
IEnumerable.GetEnumerator()
|
Returns an enumerator that iterates through a collection.
|
IList.Add(Object)
|
Adds an item to the IList. This implementation always throws NotSupportedException.
|
IList.Clear()
|
Removes all items from the IList. This implementation always throws NotSupportedException.
|
IList.Contains(Object)
|
Determines whether the IList contains a specific value.
|
IList.IndexOf(Object)
|
Determines the index of a specific item in the IList.
|
IList.Insert(Int32, Object)
|
Inserts an item to the IList at the specified index. This implementation always throws NotSupportedException.
|
IList.Remove(Object)
|
Removes the first occurrence of a specific object from the IList. This implementation always throws NotSupportedException.
|
IList.RemoveAt(Int32)
|
Removes the IList item at the specified index. This implementation always throws NotSupportedException.
|
ToString()
|
Returns a string that represents the current object.
|