Share via


ThreadSafeReadOnlyObservableCollection<T>.Item Property (Int32)

 

Gets the item at the specified index from the collection.

Namespace:   Microsoft.WindowsServerSolutions.Common.ProviderFramework
Assembly:  ProviderFramework (in ProviderFramework.dll)

Syntax

public T this[
    int index
] { get; set; }
public:
property T default[
    int index
] {
    virtual T get(int index) sealed;
    virtual void set(int index, T value) sealed;
}
Public Property Item (
    index As Integer
) As T

Parameters

  • index
    Type: System.Int32

    The index of the item to be retrieved.

Property Value

Type: T

true if the item can be retrieved; otherwise, false.

Implements

IList<T>.Item[Int32]

See Also

ThreadSafeReadOnlyObservableCollection<T> Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework Namespace

Return to top