I've been working in C#, with Visual Studio and IntelliSense.
We have a method that we utilize a lot in our classes that gets called by our main system through reflection.
Since it's being called using reflection, when you are typing the method there is no auto-complete suggestion to help you avoid mistakes when typing the method's name.
Question is, is it possible to customize IntelliSense (or any other similar tool) so that when the user wants to create a new method called e.g. public void CalledThroughReflectionMethod()
they would get the autocomplete suggestion after they have typed public void C
?
Thanks in advance