访问"这个" C#中使用索引器的指针/引用

时间:2017-11-07 10:24:57

标签: c# this unsafe indexer unsafe-pointers

我正在为我们的代码库中的性能/内存关键部分试验数据结构。我想快速访问结构中定义的字节。但是我不知道如何使用索引器访问我正在操作的结构。

[Serializable]
[StructLayout(LayoutKind.Sequential)]
public struct Foo
{
    [SerializeField]
    private byte a, b, c;

    public unsafe byte this[byte index]
    {
        get
        {       
            //omitted safety checks   

            //this is a no, no
            byte* addr = (byte*)&this;

            return addr[index];
        }
    }
}

1 个答案:

答案 0 :(得分:5)

你只能在fixed区内做你想做的事,即:

fixed (Foo* foo = &this)
{
    byte* addr = (byte*)foo;
    return addr[index];
}