gpt4 book ai didi

c# - 如何使用反射设置固定缓冲区字段元素?

转载 作者:行者123 更新时间:2023-11-30 16:07:32 27 4
gpt4 key购买 nike

这是一个典型的 unsafe 结构声明,其中包含一个固定的缓冲区字段:

[StructLayout(LayoutKind.Explicit, Pack = 1)]
public unsafe struct MyStruct
{
...

[FieldOffset(6)]
public fixed ushort MyFixedBuffer[28];

...
}

如何使用反射设置 MyFixeBuffer 的元素?

最佳答案

你不需要反射(reflection)。您需要的是要设置的结构的地址。然后你可以使用

byte* pStruct = xxxx
byte* pMyFixedBuffer = pStruct+6; // FieldOffset 6 tells me this

*(pMyFixedBuffer+i) = yourBytevalue; // set i-th element in MyFixedBuffer

我猜你根本无法获取结构的地址,因为它很可能按值传递给某些你想用不同值修补的方法。只要结构未分配给类成员变量,您就可以以某种方式从外部访问该实例,您将无法在运行时修补任何内容。

由于您的类(class)是公开的并且字段也是公开的,因此根本没有理由使用反射或不安全的代码。但我想这门课并不是你正在苦苦挣扎的那一个类。

您可以使用反射来了解类布局,但在某些时候您需要硬编码您实际想要修补的字段。为此,您可以使用从反射中获得的布局信息,然后在运行时确定地址。您需要获取该字段的 FieldOffset 属性值,然后将其用作指针偏移量来获取它。

请注意数组 MyFixedBuffer 不是结构中的真正数组,因为它嵌入在结构中。通常的对象指针 GetType 不会起作用,因为数组不是托管的,而是一个固定大小的缓冲区,根本没有 MT(方法表指针)。在这一点上,您需要处理您之后的字节中的原始偏移量和补丁。

下面是一个使用反射的例子,如果你想知道如何处理任何值类型,如果你想构建一些使用值类型的动态的东西,或者例如序列化器。

[StructLayout(LayoutKind.Explicit, Pack = 1)]
public unsafe struct MyStruct
{

[FieldOffset(6)]
public fixed ushort MyFixedBuffer[28];

[FieldOffset(62)]
public byte Next;
}

class Program
{
unsafe static void Main(string[] args)
{
var field = typeof(MyStruct).GetField("MyFixedBuffer");
int offset = field.CustomAttributes.Where(x => x.AttributeType.Equals(typeof(FieldOffsetAttribute)))
.SelectMany(x => x.ConstructorArguments)
.Select(x => x.Value)
.Cast<int>()
.First();

KeyValuePair<Type,int> fixedBufferDescription = field.CustomAttributes.Where(x => x.AttributeType.Equals(typeof(FixedBufferAttribute)))
.Select(x => x.ConstructorArguments)
.Select(x => new KeyValuePair<Type, int>((Type)x[0].Value, (int)x[1].Value))
.First();

int fixedBuferLen = Marshal.SizeOf(fixedBufferDescription.Key) * fixedBufferDescription.Value;


MyStruct tmp = new MyStruct();
byte* raw = (byte*) &tmp;
short* pmyArray = (short *) (raw + offset);

for (int i = 0; i < fixedBuferLen/Marshal.SizeOf(fixedBufferDescription.Key); i++)
{
*(pmyArray + i) = (short) i;
}

}
}

这应该可以解决问题。

关于c# - 如何使用反射设置固定缓冲区字段元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30645240/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com