当您将鼠标悬停在使用某个标签的项目上时,ReSharper是否应该为其提供弹出的Intellisense文档?
如果是这样,它对我不起作用-至少不是一直如此。使用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
};
}
}
当我将鼠标悬停在对FooImpl.Bar的引用上时,没有得到任何有用的弹出式Intellisense:
但是当我执行ctrl + shift + F1时:
ReSharper配置为覆盖通常的VS智能感知行为: