The following reference in code, where columnDefinition is a local variable containing an instance of class MemoryTableColumn, gives me both autocomplete help and, after entered, a tool tip on hover for the class definition.
But I get neither for the Integer StartingOffset property, which is a straight-up public property (not read only or computed). Basically a bog-simple situation with nothing special about it that I can think of.
columnDefinition.StartingOffset
However, StartingOffset doesn't trouble Analyser or fail to compile (or work).
Here's another edge case that's not working, where source is a variable of type Object:
WriteString(columnDefinition, (Integer(source)).ToString(), target)
Here, I'm not getting autocomplete or a tool tip on ToString(). I don't mind the extra set of parens really, I'd have to do the same thing in C# -- ((int)source).ToString(), it is just that when I'm being so helpful to the IDE, why does it ignore me (sob).