给定具有以下 Razor 代码的视图:
@Url.Action("Index", "Home")
我想像这样添加一个 Area 参数:
@Url.Action("Index", "Home", new { Area = "Manage" })
但是当我开始打字时,会发生这种情况:
@Url.Action("Index", "Home", new object{Area = ""Manage"}) // broken double quote
如何阻止 Visual Studio 完成损坏的双引号,这样我就不必为每个链接播放俄罗斯方块?ReSharper 会导致这种情况吗?我找不到它的选项。