-
Notifications
You must be signed in to change notification settings - Fork 35
M_CodeJam_Collections_OwnedCollectionBase_3_RemoveItem
Andrew Koryavchenko edited this page Jun 17, 2018
·
2 revisions
Removes the element at the specified index of the Collection(T). Clears owner for the item being removed.
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
protected override void RemoveItem(
int index
)
VB
Protected Overrides Sub RemoveItem (
index As Integer
)
F#
abstract RemoveItem :
index : int -> unit
override RemoveItem :
index : int -> unit
- index
- Type: System.Int32
The zero-based index of the element to remove.
OwnedCollectionBase(TOwner, TKey, TItem) Class
CodeJam.Collections Namespace