how to append a string[] onto an existing string[] C# code example
Example: how to append something to a string in c#
string fName = "hello ";
string lName = "world";
string Name = string.Concat(fName, lName);
//or
string firstName = "hello ";
string lastName = "world";
string name = firstName + " " + lastName;