Share via


ThreadSafeReadOnlyObservableCollection<T>.IList.Item Property (Int32)

 

Gets the item at the specified index from the collection.

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

Syntax

object IList.this[
    int index
] { get; set; }
private:
property Object^ default[
    int index
] {
    virtual Object^ get(int index) sealed = IList::default::get;
    virtual void set(int index, Object^ value) sealed = IList::default::set;
}
Private Property Item (
    index As Integer
) As Object Implements IList.Item

Parameters

  • index
    Type: System.Int32

    The index of the item to be retrieved.

Property Value

Type: System.Object

The Object from the collection.

Implements

IList.Item[Int32]

See Also

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

Return to top