我在我的某些方法中添加了<returns>
xml标记,但我无法在IntelliSense中看到它的内容。
这是我的代码:
/// <summary>
/// we all live in a yellow summary
/// </summary>
/// <returns>what it returns</returns>
public int MyMethod()
{ .... }
有没有办法显示这些内容?
答案 0 :(得分:4)
仅在十年后,终于在Visual Studio 2019 v.16.6.0中实现了这一点:)
答案 1 :(得分:2)
这当前不起作用(Visual Studio 2017),并且是一个未解决的问题:
https://github.com/dotnet/roslyn/issues/31618
使其工作的一种方法是安装ReSharper Visual Studio插件(但这是付费的)。
答案 2 :(得分:-1)
有时,IntelliSense需要时间来理解您的代码。 要验证标记是否存在,请尝试使用/ doc编译器选项,如下所示:
csc YourClass.cs /doc:YourClass.xml
如果标签存在,则只是智能感知问题,通常由其自身或重启VS
修复