This probably applies to earlier releases as well; I haven't checked there.
While discussing the Definition field in another thread, I thought I might try out the Context field as well.
As it turned out, VAX doesn't quite understand C# properties. The Context field never shows them, and they cannot be reached with the Alt + Arrow Up/Down shortcuts.
To reproduce, create the usual C# console project and insert the following code right after the beginning of Class1:
public void Foo() { }
public int SomeProperty {
get { return 1; }
}
You will see Foo() and Main() in the Context field but not SomeProperty, and Alt+Up/Down will jump right over the property.
This should be fixed IMO since C# classes can quite easily contain more properties than methods.