in csharp/core/ArrayUtil.cs [73:79]
public static void Append<T>(List<T> array, T item) { if (null != array) { array.Add(item); } }