Simon said:
Thanks.
Using the Class Viewer works for me. Right click the relevant member and
choose Add from the context menu.
My version of 'Microsoft Development Environment' is 7.0.9466. Obtained in
VS-->Help-->About.
Ahh, I see, VS2002 then?
I was testing on 2003, which might explain why override intellisense works
for me. I don't recall waht 2002 was like, except that it was pretty bad all
in all.
This is far more involved than the VB code window integration with IDE,
especially when C# events are obtained using the 'Lightrning' icon on the
proerties window. In the VB code window all ovverrides and base class
events are accessed using the top left/right combo boxes. Just out of
interest, do you know why the easier VB approach was not adopted for C#?
Off hand I can't say, except that the dev team simply didn't chose to put
time into that feature. I don't personally consider the dropdown boxes to be
easy. I like to have everything available from the keyboard(atleast within
one file, navigating with the keyboard can be a pain).
There are a few things, like events, that simply won't work in C# the way
they do in VB. There is no handles clause, so the IDE can't simply determine
which methods handle which events as easily as VB can with
WithEvents+Handles. It is probably possible, but to this point not something
that is worth the effort.