Hi,
I have noticed that the quick info tooltip is not always shown.
The documentation is shown correctly in the intelli prompt while typing, but not when hovering with the mouse over the code. It also works for local variables, but just not for paramerts.
public static void Call(List<string> collection)
{
Console.WriteLine(collection.Capacity); // NOK
}
public static void Call<T>(List<T> collection)
{
Console.WriteLine(collection.Capacity); // NOK
}
public static void Call()
{
var list = new List<string>();
Console.WriteLine(list.Capacity); // OK
}
Best regards, Tobias Lingemann.