using System.Collections.Generic;
public static void Main()
Console.WriteLine(string.Join(" | ", TardItUp("banquet")));
public static IEnumerable<string> TardItUp(string template)
return Enumerable.Range(0, template.Length).Select(i => template.Substring(0, i) + "\\w" + template.Substring(1+i));