using Class1 = ClassLibrary1.Class1; // Class1 is read, unresolved
namespace Blah
{
public class CrossReference
{
private Class1 c; // here we get import popup for another Class1, which exists.
}
}
Description
using Class1 = ClassLibrary1.Class1; // Class1 is read, unresolved
namespace Blah
{
public class CrossReference
{
private Class1 c; // here we get import popup for another Class1, which exists.
}
}