Ejemplo n.º 1
0
        public ActionResult Index()
        {
            // Here we just call the render method to test
            var html = RazorRendere.Render("Test.Success");

            return(View());
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            for (int i = 0; i < 1000; i++)
            {
                var tmp = RazorRendere.Render("Test.Success");
                Console.WriteLine(tmp);
            }

            Console.ReadLine();
        }
Ejemplo n.º 3
0
 public void TestSuccess()
 {
     RazorRendere.Render("Test.Success");
 }