InlineArrayAttribute 类

定义

指示实例的存储按顺序复制 Length 次。

public ref class InlineArrayAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Struct, AllowMultiple=false)]
public sealed class InlineArrayAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Struct, AllowMultiple=false)>]
type InlineArrayAttribute = class
    inherit Attribute
Public NotInheritable Class InlineArrayAttribute
Inherits Attribute
继承
InlineArrayAttribute
属性

示例

以下示例演示如何使用八个 float 值声明内联数组类型。

[InlineArray(8)]
struct Float8InlineArray
{
    private float _value;
}

注解

此属性可用于使用单个字段批注 struct 类型。 运行时将实际类型布局中的该字段复制为指定的次数。

重要

.NET 9 及更高版本,使用此属性标记的类型的默认实现 Equals()GetHashCode() 引发 NotSupportedException。 如果使用 Equals(Object)GetHashCode,则必须重写它们。

构造函数

InlineArrayAttribute(Int32)

创建具有指定长度的新 InlineArrayAttribute 实例。

属性

Length

获取在内联数组类型中复制的顺序字段数。

TypeId

在派生类中实现时,获取此 Attribute的唯一标识符。

(继承自 Attribute)

方法

Equals(Object)

返回一个值,该值指示此实例是否等于指定对象。

(继承自 Attribute)
GetHashCode()

返回此实例的哈希代码。

(继承自 Attribute)
GetType()

获取当前实例的 Type

(继承自 Object)
IsDefaultAttribute()

在派生类中重写时,指示此实例的值是否为派生类的默认值。

(继承自 Attribute)
Match(Object)

在派生类中重写时,返回一个值,该值指示此实例是否等于指定对象。

(继承自 Attribute)
MemberwiseClone()

创建当前 Object的浅表副本。

(继承自 Object)
ToString()

返回一个表示当前对象的字符串。

(继承自 Object)

适用于