aspnetcore/benchmarks/Microsoft.AspNetCore.Mvc.Pe.../Views/HelperPartialSync.cshtml

7 lines
189 B
Plaintext

@using System;
@using Microsoft.AspNetCore.Html
@model System.String
@for (var i = 0; i < 100; i++)
{
Html.RenderPartial("~/Views/HelperPartial_Partial.cshtml", Model + i.ToString());
}