add to an array in c# code example
Example 1: add item to an array c#
List<string> l = new List<string>(){"one","two","tree","four",};
Example 2: c# how to append in array
int[] terms;
for(int runs = 0; runs < 400; runs++)
{
terms[] = runs;
}