Func<List<int>, string> getStr = (list) => { var returnStr = ""; if (list.Any()) { list.ForEach(o => returnStr += o); } return returnStr; };