Posted 16 years ago
by Devel
Version : 4.0.274.0
Platform: Windows XP / .Net 2.0/ 32 bit
I have a C# library with a class like
public class XYZClass
{
public const int TESTCONST = 1;
public static void StaticTest(string message)
{
}
public void InstanceTest(string message)
{
}
}
We have set up SyntaxEditor's language to use VBSyntaxLanguage to write VB code, however the External libraries added are in C#
What needs to be done so that when one types "XYZClass." and Ctrl + Space we can see all the static members and constants of the class like in this case I should see 1) TESTCONST and 2) StaticTest in the MemberList drop down
Also when I create an instance of XYZClass like
Dim abc as New XYZClass()
For abc I should be able to see InstanceTest in the MemberList drop down
Thanks
Devel
[Modified at 10/03/2008 04:31 PM]
[Modified at 10/03/2008 05:18 PM]
[Modified at 10/09/2008 08:06 AM]
Platform: Windows XP / .Net 2.0/ 32 bit
I have a C# library with a class like
public class XYZClass
{
public const int TESTCONST = 1;
public static void StaticTest(string message)
{
}
public void InstanceTest(string message)
{
}
}
We have set up SyntaxEditor's language to use VBSyntaxLanguage to write VB code, however the External libraries added are in C#
What needs to be done so that when one types "XYZClass." and Ctrl + Space we can see all the static members and constants of the class like in this case I should see 1) TESTCONST and 2) StaticTest in the MemberList drop down
Also when I create an instance of XYZClass like
Dim abc as New XYZClass()
For abc I should be able to see InstanceTest in the MemberList drop down
Thanks
Devel
[Modified at 10/03/2008 04:31 PM]
[Modified at 10/03/2008 05:18 PM]
[Modified at 10/09/2008 08:06 AM]