在版本17.3.0预览2.0上禁用弹出信息
将VS更新为17.3.0 Preview 2.0版本后,我有一个来自VS的弹出信息,我想将其禁用,我不知道该如何(而且我不知道要问Google有什么问题)。如果有人知道或与类似问题有链接,我将非常感谢。
(不好意思我不能放置屏幕,我没有声誉点)
disable :template(模板:“ [action]/.....
) 值(ok(value:product)
)
[Route(template: "[action]/{category}", Name ="GetProductByCategory")]
[HttpGet]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task<ActionResult<IEnumerable<Product>>> GetProductByCategory(string category)
{
var products = await _productRepo.GetProductByCategory(categoryName: category);
return Ok(value: products);
}
ty u。
After i updated my VS to Version 17.3.0 Preview 2.0, i have a pop up info from VS and i want to disable it and i don't know how(and i don't know what question to ask google). If anyone knows or have a link to a similar question i will really appreciate.
(to bad i can't put a printscreen, i don't have reputation points)
Disable: template (template: "[action]/ .....
)
value (Ok(value: products)
)
[Route(template: "[action]/{category}", Name ="GetProductByCategory")]
[HttpGet]
[ProducesResponseType(StatusCodes.Status200OK)]
public async Task<ActionResult<IEnumerable<Product>>> GetProductByCategory(string category)
{
var products = await _productRepo.GetProductByCategory(categoryName: category);
return Ok(value: products);
}
Ty u.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它被称为“查看内联提示”,我在链接上找到了它:
https:> https:https:// https:https://youtu.be/wcmb3v7nxms? t = 398
用于快速查看(如果是禁用),请按 alt + f1 (在Windows上)。
对于永久视图:工具→选项→文本编辑器→C#→高级→(一直向下滚动),并启用“显示内联参数名称提示”
It's called "Viewing inline hints" and I found it at link:
https://youtu.be/WCMb3V7nxms?t=398
For quick view (if it's disable) press ALT + F1 (on windows).
For permanent view: Tools → Options → Text Editor → C# → Advanced → (scroll all the way down) and Enable "Display inline parameter name hints"