IReadOnlyCollection<T> Interface

Definition

An interface to an immutable collection.

public interface IReadOnlyCollection<T> : Microsoft.SqlServer.Management.Sdk.Sfc.IReadOnlyCollection, System.Collections.Generic.IEnumerable<T>
type IReadOnlyCollection<'T> = interface
    interface IReadOnlyCollection
    interface IEnumerable
    interface seq<'T>
Public Interface IReadOnlyCollection(Of T)
Implements IEnumerable(Of T), IReadOnlyCollection

Type Parameters

T

The item type of the collection.

Derived
Implements

Properties

Count

Gets the number of items contained in the IReadOnlyCollection.

(Inherited from IReadOnlyCollection)

Methods

Contains(T)

Determines whether the collection contains a specific value.

CopyTo(T[], Int32)

Copies the elements of the collection to an array, starting at a particular array index.

Applies to