Search Results for

    Show / Hide Table of Contents

    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

    Extension Methods

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