Mercurial > pub > RazorEngine
view README.markdown @ 3:91d78452a4a0 default tip
sync
author | cin |
---|---|
date | Thu, 12 Feb 2015 00:20:38 +0300 |
parents | 5bca2d201ad8 |
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" });