4

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.

3 Answers 3

11

Could you just not use:

List<object> list = new List<object>();
list.Add(key);
Sign up to request clarification or add additional context in comments.

Comments

3

I think you want something like the IEnumerable.ToArray function.

object[] inputs = Request.Form.Keys.ToArray()

Comments

1

use List<T> it has same access efficiency as array (O(1)) and have method Add to add elements. Read more here: http://msdn.microsoft.com/en-us/library/6sh2ey19.aspx

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.