Hello,
In SytaxEditor,
I would like to refer to definitions between multiple codes in a project, get QuickInfo, use completion functionality.
For example, there are two codes as SyntaxEditor's text like bellow, and they are displayed in a docking window.
namespace MyNamespace{
class ClassA {
public ClassB(){
this.classA = new ClassA();
}
public int PropertyA;
}
}
namespace MyNamespace{
class ClassB {
ClassA classA;
public ClassB(){
this.classA = new ClassA();
classA.PropertyA = 1;
}
}
}
I cannot refer to definitions in the other code.
Thus, I cannot get QuickInfo, or cannot use the completion functionality like Ctrl + Space after entering 'classA.', etc.
How can I solve this problem?
Thanks.