From f3e9c9d5238ba5c3ee091134d5413a656a3fe518 Mon Sep 17 00:00:00 2001 From: zhiyuanliang Date: Sat, 14 Oct 2023 14:30:12 +0800 Subject: [PATCH] remove nameof in the negate example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5617699e..e1655128 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,7 @@ In MVC views `` tags can be used to conditionally render content based You can also negate the tag helper evaluation to display content when a feature or set of features are disabled. By setting `negate="true"` in the example below, the content is only rendered if `FeatureX` is disabled. ``` HTML+Razor - +

This can only be seen if 'FeatureX' is disabled.

```