gpt4 book ai didi

c# - 在不安全模式下使用 64 位指针访问 16 位数组

转载 作者:太空宇宙 更新时间:2023-11-03 11:19:14 25 4
gpt4 key购买 nike

<分区>

这是我的代码:

              long max = pcmU16.Length;
long index = 0;

fixed (ushort* srcFix = pcmU16)
{
ushort* src = srcFix;

next:

*src = 32768;
src++;
index++;

if (index != max)
{
goto next;
}
}

如您所见,它一次写入 2 个字节。如何使用ulong类型一次写入8个字节? pcmU16 是 ushort[] 数组。

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