Mode:
Duration:
1
2
3
4
5
6
7
8
9
using System;
using System.Collections.Generic;
class Program {
static void Main() {
List<string> fruits = new List<string> { "Apple", "Banana", "Cherry" };
fruits.ForEach(f => Console.WriteLine(f));
}
}Coding works best on desktop or with an external keyboard.