NameObjectCollectionItem(Int32) Property
Namespace: DevCase.Runtime.CollectionsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
public Object this[
int index
] { get; }
Public ReadOnly Default Property Item (
index As Integer
) As Object
Get
Dim instance As NameObjectCollection
Dim index As Integer
Dim value As Object
value = instance(index)
public:
property Object^ default[int index] {
Object^ get (int index);
}
member Item : Object with get
No code example is currently available or this language may not be supported.
- index Int32
-
The zero-based index of the entry to locate in the collection.
Object
A
Object that contains the comma-separated list of values at the specified
index of the collection.
ArgumentOutOfRangeException
|
index is outside the valid range of indexes for the collection.
|