public static string[] ToDisplay(this IStackList <object> stack) { var text = stack.Select(item => item.ToString()); return(text.ToArray()); }