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