I have a list of list of strings:
var list = new List<string> {"apples","peaches", "mango"};
Is there a way to iterate through the list and display the items in a console window without using foreach loop may be by using lambdas and delegates.
I would like to the output to be like below each in a new line:
The folowing fruits are available:
apples
peaches
mango