If I have a page with:
@section SomeStuff { This is a section I just addered } >
@section SomeStuff { This is a section I just addered }
You could do:
@if (condition) { @RenderSection("SomeStuff") }
Or just use a conditional statement directly rather than @RenderSection:
conditional statement
@RenderSection
@if (yourCondition) { This is a section I just addered }