Share via


IReadOnlyList<T> Interface

Defines properties and methods for the generic immutable list of objects that can be accessed by index.

Namespace:  Microsoft.SqlServer.Management.Sdk.Sfc
Assembly:  Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)

Syntax

'Declaration
Public Interface IReadOnlyList(Of T) _
    Inherits IReadOnlyCollection(Of T), IReadOnlyCollection, IEnumerable(Of T),  _
    IEnumerable
'Usage
Dim instance As IReadOnlyList(Of T)
public interface IReadOnlyList<T> : IReadOnlyCollection<T>, 
    IReadOnlyCollection, IEnumerable<T>, IEnumerable
generic<typename T>
public interface class IReadOnlyList : IReadOnlyCollection<T>, 
    IReadOnlyCollection, IEnumerable<T>, IEnumerable
type IReadOnlyList<'T> =  
    interface 
        interface IReadOnlyCollection<'T>
        interface IReadOnlyCollection 
        interface IEnumerable<'T>
        interface IEnumerable 
    end
JScript does not support generic types and methods.

Type Parameters

  • T
    The type of the elements in the list.

The IReadOnlyList<T> type exposes the following members.

Properties

  Name Description
Public property Count Gets the number of items that are contained in the collection. (Inherited from IReadOnlyCollection.)
Public property Item Gets the element at the specified index.

Top

Methods

  Name Description
Public method Contains Determines whether the specified item is contained in the collection. (Inherited from IReadOnlyCollection<T>.)
Public method CopyTo Copies the elements of the collection to the specified array, starting at a particular array index. (Inherited from IReadOnlyCollection<T>.)
Public method GetEnumerator (Inherited from IEnumerable<T>.)

Top

See Also

Reference

Microsoft.SqlServer.Management.Sdk.Sfc Namespace