2

我想从应用于以下结构的 StructLayout 中获取 22 字节的结构大小。

[StructLayout(LayoutKind.Explicit, CharSet = CharSet.Ansi, Pack = 1, Size = 22)]
internal unsafe struct Entry
{
    [FieldOffset(0)]
    private fixed char title[14];
    [FieldOffset(14)]
    private readonly int size;
    [FieldOffset(18)]
    private readonly int start;
}

有人会建议 Marshal.SizeOf 但它返回 28 字节的非托管对象的大小,这是不希望的。

int count = Marshal.SizeOf(typeof(Entry));

但是,获取此属性似乎是不可能的,因为数组“customAttributes”的长度始终为 0。

var type = typeof(Entry);
var customAttributes = type.GetCustomAttributes(typeof(StructLayoutAttribute), true);

任何解决方法?

4

1 回答 1

6

StructLayout 属性中的信息作为 IL 指令嵌入方法中,而不是作为自定义属性。要检索它,您可以使用Type.StructLayoutAttribute 属性

var type = typeof(Entry);
var sla = type.StructLayoutAttribute;

或者,如果结构在您的控制之下,您可以简单地定义一个 Size 常量:

[StructLayout(LayoutKind.Explicit, Pack = 1, Size = Entry.Size)]
internal unsafe struct Entry
{
    public const int Size = 22;
    ...
于 2013-07-16T18:56:35.333 回答