Show / Hide Table of Contents

    Interface IArrayMemory<TElement>

    Represents a memory block interface with access via indexer.

    Представляет интерфейс блока памяти с доступом через индексатор.

    Inherited Members
    IMemory.Size
    Namespace: Platform.Memory
    Assembly: Platform.Memory.dll
    Syntax
    public interface IArrayMemory<TElement> : IMemory
    Type Parameters
    Name Description
    TElement

    Element type.

    Тип элемента.

    Properties

    | Improve this Doc View Source

    Item[Int64]

    Gets or sets the element at the specified index.

    Возвращает или устанавливает элемент по указанному индексу.

    Declaration
    TElement this[long index] { get; set; }
    Parameters
    Type Name Description
    Int64 index

    The index of the element to get or set.

    Индекс элемента, который нужно получить или установить.

    Property Value
    Type Description
    TElement
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX