using System.Collections.Generic;
public static void Main()
var strList = new List<string>();
var result = strList.Aggregate(
(val, current) => Tuple.Create(current, val.Item2 & Method(val.Item1, current)),
Console.WriteLine(result);
private static bool Method(string prev, string cur)