gpt4 book ai didi

c# - 使用数组的 SetValue 方法与 [] 索引器

转载 作者:可可西里 更新时间:2023-11-01 09:03:16 26 4
gpt4 key购买 nike

我注意到数组有 SetValue 方法,当您只能使用索引器时,这似乎有点不合适。 SetValue 有什么特殊用途吗? MSDN 文章似乎并没有说明 SetValue 的用途,只是说明了如何使用它。就速度而言,使用哪种方法效率更高?

最佳答案

有时你所拥有的数组只是一个数组Array 类没有索引器,因此在其上设置/获取元素值的最佳方法是通过 GetValueSetValue 方法。例如:

private void M(Array array) 
{
array[0] = 5; // <-- Compiler error
array.SetValue(5, 0); // <-- Works
}

关于c# - 使用数组的 SetValue 方法与 [] 索引器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10626892/

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