add method C# array code example
Example 1: c# add to array
var Freds = new [] { "Fred", "Freddy" };
Freds = Freds.Concat(new [] { "Frederick" }).ToArray();
Example 2: add item to an array c#
List<string> l = new List<string>(){"one","two","tree","four",};