using System;
using System.Collections.Generic;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static void Main(string[] args)
{
List<bool> list = new List<bool>();
list.Add(true);
list.Add(false);
list.Add(true);
list.Add(false);
foreach (bool val in list) {
Console.WriteLine(val);
}
}
}
}
/*
run:
True
False
True
False
*/