I am a Java programmer, and just starting to use Visual Studio to do C# programming. In Java IDE such as Eclipse, if I do not know the class name in a package, I can just type a dot (.) after a package name, then I will get a list of all the classes in that package. How I can configure visual studio to do the similar thing, say, if I click a namespace name in a file (for example, using System), or add a dot after the namespace, all the classes in that namespace will be displayed somewhere?
Share
If you want to know, first make sure Ctrl + SPACE is not used by other things such as IME. Then execute this shortcut for IntelliSense within the editor. Visual Studio will display all classes you can access in the context. It may not work like Java, but most people like me find it enough to move on.
To better understand each namespace, I am more used to hit F1 on the namespace to launch MSDN.