Here\'s how I would add one item to an IEnumerable object:
//Some IEnumerable object IEnumerable arr = new string[] { \"ABC\", \"DEF\"
Since IEnumerable is read-only, you need to convert to list.
var new_one = arr.ToList().Add("JKL");
Or you can get a extension method like;
public static IEnumerable Append(this IEnumerable source, params T[] item) { return source.Concat(item); }