Search Results for

    Show / Hide Table of Contents

    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 true [was front item].

    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

    Extension Methods

    Extensions.ReflectiveCompare<T>(T, T)
    Extensions.RawClone<T>(T)
    In This Article
    Back to top Copyright © 2012-2024 Wojciech Figat