using System.Collections.Generic;
using Combinatorics.Collections;
public static void Main()
var integers = new List<string> {"abc", "def", "ghi", "jkl", "ghi"};
var c = new Combinations<string>(integers, 3, GenerateOption.WithoutRepetition);
Console.WriteLine(string.Join(",", v));