Mercurial > pub > RazorEngine
view README.markdown @ 0:5bca2d201ad8
initial commit
author | cin |
---|---|
date | Sun, 24 Aug 2014 11:14:55 +0400 |
parents | |
children |
line wrap: on
line source
RazorEngine =========== A templating engine built on Microsoft's Razor parsing engine, RazorEngine allows you to use Razor syntax to build dynamic templates: string template = "Hello @Model.Name, welcome to RazorEngine!"; string result = Razor.Parse(template, new { Name = "World" });