Click or drag to resize

MonitoredListT Class

Inheritance Hierarchy
SystemObject
  RavingBots.MagicGestures.UtilsMonitoredListT

Namespace:  RavingBots.MagicGestures.Utils
Assembly:  Assembly-CSharp (in Assembly-CSharp.dll) Version: 0.0.0.0
Syntax
C#
public class MonitoredList<T> : IList<T>, 
	IEnumerable, ICollection<T>, IEnumerable<T>

Type Parameters

T
The type of the element.

The MonitoredListT type exposes the following members.

Constructors
Properties
Methods
  NameDescription
Public methodAdd
Public methodAddRange
Add multiple items to this list.
Public methodClear
Public methodContains
Public methodContainsIndex
Check if the given index exists in this list.
Public methodCopyTo
Public methodGetEnumerator
Returns an enumerator that iterates through the collection.
Public methodIndexOf
Public methodInsert
Public methodMove
Move an item to a new position.
Public methodRemove
Public methodRemoveAt
Top
Fields
  NameDescription
Public fieldList
The items.
Public fieldOnAdded
The delegate called when a new item is added.
Public fieldOnMoved
The delegate called when an item is moved from one index to another.
Public fieldOnRemoved
The delegate called when an item is removed.
Top
See Also