CRIWARE for C#
Search Results for

    Show / Hide Table of Contents

    Struct InlineArray8<T>

    Blittable配列型

    Inherited Members
    ValueType.Equals(object)
    ValueType.GetHashCode()
    ValueType.ToString()
    object.Equals(object, object)
    object.GetType()
    object.ReferenceEquals(object, object)
    Namespace: CriWare.InteropHelpers
    Assembly: CriWare.CriBase.dll
    Syntax
    public struct InlineArray8<T> where T : unmanaged
    Type Parameters
    Name Description
    T

    配列の要素の型

    Remarks

    ネイティブ層と同じメモリレイアウトの配列型です。 CRIWAREのAPIに受け渡す構造体のフィールドとして利用されます。

    Properties

    this[int]

    配列内の要素の取得

    Declaration
    public T this[int index] { get; }
    Parameters
    Type Name Description
    int index

    要素インデックス

    Property Value
    Type Description
    T

    インデックスに対応する配列内の要素

    Operators

    implicit operator Span<T>(InlineArray8<T>)

    Span<T>へのキャスト

    Declaration
    public static implicit operator Span<T>(InlineArray8<T> array)
    Parameters
    Type Name Description
    InlineArray8<T> array
    Returns
    Type Description
    Span<T>
    In this article
    Back to top Generated by DocFX