gpt4 book ai didi

c# - 对象数组动态

转载 作者:行者123 更新时间:2023-12-04 22:08:31 24 4
gpt4 key购买 nike

我的代码中有以下行:

object[] inputs = new object[] {"input1", "input2", "input3", "input4"};

我想知道如何(不知道数组中有多少元素)使用这样的循环动态添加:
object[] inputs;
foreach (string key in Request.Form.Keys)
{
inputs[0] = key;
}

我怎么能这样做?

提前致谢。

此致。

最佳答案

你能不能不使用:

List<object> list = new List<object>();
list.Add(key);

关于c# - 对象数组动态,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3396391/

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