public static class Extensions
public static void Add<T>(this T[] _self, T item)
_self = _self.Concat(new T[] { item }).ToArray();
public static void Main()
string[] test = { "Hello" };
test = test.Concat(new string[] { "cruel" }).ToArray();
Console.WriteLine(String.Join(" ", test) + " world");