docs.unity.cn
    Show / Hide Table of Contents

    Method Insert

    Insert(Int32, T)

    Inserts an element at the specified index, resizing as necessary.

    Declaration
    public void Insert(int index, T elem)
    Parameters
    Type Name Description
    Int32 index

    The position at which to insert the new element.

    T elem

    The element to add to the buffer.

    Remarks

    The buffer is resized if it has no additional capacity.

    Examples
            if (insertionIndex < buffer.Length)
                buffer.Insert(insertionIndex, 6);
    Back to top Copyright © 2022 Unity Technologies
    Generated by DocFX
    on Wednesday, July 6, 2022
    Terms of use