是否可以知道是否已经使用 RazorEngine 编译了特定模板?基本上,如果你打电话:
Razor.Parse("Hello there @Model.Name", model, "hello-world");
这将使用键“hello-world”编译模板。第一次这可能需要几毫秒,但由于缓存,第二次几乎是瞬间。是否可以知道模板是否已经编译?就像是:
var isCompiled = Razor.IsCompiled("Hello there @Model.Name", "hello-world");