When using VA.X with C#, auto complete doesn't seem to work. For instance, when I start typing a switch case like this:
switch (n)
{
case SomeEnum.
after the ".", the auto-complete box pops up and suggests the various enum values. If I select one (eg. "Foo") using Enter or Tab, the "case" is deleted and I end up with this:
switch (n)
{
SomeEnum.Foo
However, when I now backspace everything and again enter "case SomeEnum." and accept "Foo", then it's working. On a new line, I again get the faulty behavior.
The same happens with "new", "if" and just about any keyword, which also get deleted when auto-completing whatever follows.
Is there a work-around for this ?
- Togo