Giving code:
enum KeywordType
{
@abstract,
@as,
@base,
@bool,
//and much more...
}
And usage:
var token = KeywordType.@abstract;
Move the cursor to "@abstract" part (definition or usage), no info is shown in the VA Navigation Bar.
Coloring won't work, too.
Tooltip works, but I'm pretty sure that's Visual Studio's tooltip.
Another example:
enum PreprocessorType
{
@define,
@undef,
//and much more...
}
var token = PreprocessorType.define;
As you can see, the "@" is completely optional here, but info and coloring still won't on both the definition and usage.
It will work after I remove the "@" from PreprocessorType's definition.
It doesn't matter if the "Enable in C#" in Options->Suggestions is checked or not.
Environment:
VA Version: 10.9.2094
Visual Studio 2015 with Update 2
Windows 10 64bit