Aggregate란?
c# linq 사용 시, Min, Max, Sum, Average는 알지만, Aggregate 잘 사용하지 않음.
string[] str = { "a", "b", "c", "d", "e" };
string line = str.Aggregate((current, next) => current + "," + next);
line는?
뛰어난 글이네요, 감사합니다.
뛰어난 글이네요, 감사합니다.