using System.Collections.Generic;
public static void Main()
var sourceTemplate = "Names: {{#each names}} {{.}}, {{/each}}";
var template = Morestachio.Parser.ParseWithOptions(new Morestachio.ParserOptions(sourceTemplate));
var otherModel = new List<string>();
var model = new Dictionary<string, object>();
model["names"] = otherModel;
Console.WriteLine(template.CreateAndStringify(model));