Class CircularBuffer<T>.ItemRemovedEventArgs
Arguments for item removed event
Inheritance
System.Object
CircularBuffer<T>.ItemRemovedEventArgs
Namespace: FlaxEngine.Collections
Assembly: FlaxEngine.CSharp.dll
Syntax
public class ItemRemovedEventArgs : EventArgs
Constructors
ItemRemovedEventArgs(Boolean, T)
Initializes a new instance of the CircularBuffer<T>.ItemRemovedEventArgs class.
Declaration
public ItemRemovedEventArgs(bool wasFrontItem, T item)
Parameters
System.Boolean
wasFrontItem
if set to |
T
item
The item. |
Properties
Item
Gets removed item
Declaration
public T Item { get; }
Property Value
T
|
WasFrontItem
Gets if item removed was item from front of the buffer
Declaration
public bool WasFrontItem { get; }
Property Value
System.Boolean
|