I have the following line in my code:
object[] inputs = new object[] {"input1", "input2", "input3", "input4"};
I would like to know how (without knowing how many elements will be in the array) add dynamically using a loop like this:
object[] inputs;
foreach (string key in Request.Form.Keys)
{
inputs[0] = key;
}
How could I do this?
Thanks in advance.
Best Regards.
Could you just not use:
List<object> list = new List<object>();
list.Add(key);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With