|
AdapterCollectionBaseTSetItem Method
|
Assigns a new element to the
CollectionT at the specified index.
Namespace: GSF.TimeSeries.AdaptersAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.205-beta
Syntax protected override void SetItem(
int index,
T item
)
Protected Overrides Sub SetItem (
index As Integer,
item As T
)
protected:
virtual void SetItem(
int index,
T item
) override
abstract SetItem :
index : int *
item : 'T -> unit
override SetItem :
index : int *
item : 'T -> unit
function SetItem(index, item);
View SourceParameters
- index Int32
- The zero-based index for which item should be assigned.
- item T
- The IAdapter implementation to assign.
See Also