xxxxxxxxxx
var Freds = new [] { "Fred", "Freddy" };
Freds = Freds.Concat(new [] { "Frederick" }).ToArray();
xxxxxxxxxx
List<int> termsList = new List<int>();
for (int runs = 0; runs < 400; runs++)
{
termsList.Add(value);
}
// You can convert it back to an array if you would like to
int[] terms = termsList.ToArray();
xxxxxxxxxx
string[] MyArray = new string[] { "A", "B" };
MyArray = new List<string>(MyArray) { "C" }.ToArray();
//MyArray = ["A", "B", "C"]
raadgames :)
xxxxxxxxxx
private T[] AddElementToArray<T>(T[] array, T element) {
T[] newArray = new T[array.Length + 1];
int i;
for (i = 0; i < array.Length; i++) {
newArray[i] = array[i];
}
newArray[i] = element;
return newArray;
}
xxxxxxxxxx
int[] terms = new int[400];
for (int runs = 0; runs < 400; runs++)
{
terms[runs] = value;
}
xxxxxxxxxx
int[] terms;
for(int runs = 0; runs < 400; runs++)
{
terms[] = runs;
}
xxxxxxxxxx
int[] terms = new int[400];
for (int runs = 0; runs < 400; runs++)
{
terms[runs] = value;
}