Mr.*_*. T 7 resharper intellisense
当您将鼠标悬停在该项目的使用上时,ReSharper是否应该为使用该标记的项目提供弹出式智能感知文档?
如果是这样,它对我不起作用 - 至少,不是一贯的.使用ReSharper Ultimate 2018.1.3
public interface IFoo
{
/// <summary>
/// Gets or sets the value of Bar
/// </summary>
int Bar { get; set; }
}
public class FooImpl : IFoo
{
#region Implementation of IFoo
/// <inheritdoc />
public int Bar { get; set; }
#endregion
}
public class TestFooImpl
{
public void Test()
{
var foo1 = new FooImpl
{
Bar = 3
};
}
}
Run Code Online (Sandbox Code Playgroud)
当我将鼠标悬停在对FooImpl.Bar的引用上时,我没有得到任何有用的弹出式智能感知:

但是当我按ctrl + shift + F1时:
ReSharper配置为覆盖通常的VS intellisense行为: