gpt4 book ai didi

c# - 获取数组中第一个条目的指针

转载 作者:可可西里 更新时间:2023-11-01 08:21:02 27 4
gpt4 key购买 nike

我想获取数组中第一个条目的指针。这是我试过的方法

int[] Results = { 1, 2, 3, 4, 5 };

unsafe
{
int* FirstResult = Results[0];
}

得到以下编译错误。有什么解决办法吗?

You can only take the address of an unfixed expression inside of a fixed statement initializer

最佳答案

试试这个:

unsafe
{
fixed (int* FirstResult = &Results[0])
{

}
}

关于c# - 获取数组中第一个条目的指针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9946550/

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