10 lines
249 B
C#
10 lines
249 B
C#
string MakeList(string separator)
|
|
{
|
|
int counter = 1;
|
|
|
|
Func<string, string> makeItem = item => counter++ + separator + item + "\n";
|
|
|
|
return makeItem("first") + makeItem("second") + makeItem("third");
|
|
}
|
|
|
|
Console.WriteLine(MakeList(". "));
|