Does anybody know if it is possible to change the order that the items appear in Intellisense so that they are grouped together into properties, subs, functions etc. rather than the default alphabetical order.
E.g.
Class MyClass
Public Property BiscuitProperty
Public Property ElephantProperty
Public Sub DogSub
Public Sub AnacondaSub
Public Function ChocolateFunction
End Class
After typing “myClass.” these would by default appear as follows:
- AnacondaSub
- BiscuitProperty
- ChocolateFunction
- DogSub
- ElephantProperty
Ideally I would like them to appear in the following order:
- BiscuitProperty
- ElephantProperty
- AnacondaSub
- DogSub
- ChocolateFunction
I’ve had a look through the options and had a read on-line and can’t find anything so I am guessing it probably isn’t possible but thought it was worth an ask.
Thanks,
Al
According to the Options for IntelliSense in the Tools -> Options -> Text Editor -> C# -> IntelliSense settings, this is not possible…