Answers for "c# how to create an array and add something to it"

C#
13

c# add to array

var Freds = new [] { "Fred", "Freddy" };
Freds = Freds.Concat(new [] { "Frederick" }).ToArray();
Posted by: Guest on May-01-2020
0

c# append array

int[] terms = new int[400];
for (int runs = 0; runs < 400; runs++)
{
    terms[runs] = value;
}
Posted by: Guest on April-02-2022

Code answers related to "c# how to create an array and add something to it"

C# Answers by Framework

Browse Popular Code Answers by Language