Class CircularBuffer<T>.ItemAddedEventArgs
Arguments for new item added event
Inheritance
System.Object
CircularBuffer<T>.ItemAddedEventArgs
Namespace: FlaxEngine.Collections
Assembly: FlaxEngine.CSharp.dll
Syntax
public class ItemAddedEventArgs : EventArgs
Constructors
ItemAddedEventArgs(Int32, T)
Initializes a new instance of the CircularBuffer<T>.ItemAddedEventArgs class.
Declaration
public ItemAddedEventArgs(int index, T item)
Parameters
System.Int32
index
The index. |
T
item
The item. |
Properties
Index
Gets Index of new element in buffer
Declaration
public int Index { get; }
Property Value
System.Int32
|
Item
Gets added item
Declaration
public T Item { get; }
Property Value
T
|