NameObjectCollectionGet(Int32) Method
Gets the values at the specified index of this
NameObjectCollection
combined into one comma-separated list.
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 virtual Object Get(
int index
)
Public Overridable Function Get (
index As Integer
) As Object
Dim instance As NameObjectCollection
Dim index As Integer
Dim returnValue As Object
returnValue = instance.Get(index)
public:
virtual Object^ Get(
int index
)
abstract Get :
index : int -> Object
override Get :
index : int -> Object
No code example is currently available or this language may not be supported.
- index Int32
-
The zero-based index of the entry that contains the values to get from the collection.
Object
A
String that contains a comma-separated list of the values at the specified
index of this
NameObjectCollection, if found; otherwise,
null.
ArgumentOutOfRangeException
|
index is outside the valid range of indexes for the collection.
|