VS 2003: First Complaint
VS 2003 is great. I love the new C# autocomplete stuff, but one thing I can't stand is how they implemented the override autocomplete. Unlike every single other autocomplete function in VS.NET, where you type like you normally would and then hit tab or alt-space to complete, you have to type override to get it to come up, and then it automatically does. So, if you are used to typing something like:
"protected override void CreateChildControls"
You will get autocomplete after the override keyword is typed. This is great and all, but if by reflex you start to type "void," the intellisense isn't smart enough to know you are typing "void," it expects a function name. So now, you have to type:
"override Crea..."
Nice. Less Typing and all, but it isn't exactly valid C# code, so if you've been programming in C# for 20 hours a day since beta 2 it just don't feel right (and my reflexes always are typing "protected override void" before I remember that they added the autocompete)... alas, I will get used to it, but doesn't anyone else think it is wierd how this works?