我已经看过它现在引用了几次 - 最近一次是this article:
Also using Razor template you can pass template as a parameter to a method.
了解这种能力解决的现实生活中的问题会很有帮助。
THX
答案 0 :(得分:1)
这种能力是Razor实际工作方式的自然效果。这是可用的,因为Razor在内部需要这种能力。
有关现实生活中的示例,请查看Razor sections with default content上的博文。您可以使用它来编写以下代码:
@this.RenderSection("OptionalSection", @<div>Default Content</div>)