Hi,
I have a requirement to support writing C# language intellisense in a visual studio 2010 tool window extension. I am using SyntaxEditor and the language is set to C#. How do I enable intellisense ? Please see below for more details.
I load the following code by default in to the syntax editor.
Using System;
Public class RuleA
{
Public void Execute()
{
// when user types here, I want to enable the intellisense
}
}
Please let me know how to support this
Thanks
Hari
I have a requirement to support writing C# language intellisense in a visual studio 2010 tool window extension. I am using SyntaxEditor and the language is set to C#. How do I enable intellisense ? Please see below for more details.
I load the following code by default in to the syntax editor.
Using System;
Public class RuleA
{
Public void Execute()
{
// when user types here, I want to enable the intellisense
}
}
Please let me know how to support this
Thanks
Hari