I think this bug had been reported and fixed, but it reappeared again in the new release
Intellisense for IPort doesn't show property Named from INamedObject
public interface INamedObject
{
string Name { get;}
}
public interface IPort:INamedObject
{
string Value {get;}
}
class Test
{
void Do()
{
IPort port;
port.
}
}