For some reason I can see docs only for .net libraries. Is there a way to see my own or third party docs in Visual studio?
I would like to know if its possible to see docs when pressing ctrl+space in Visual Studio 2010. Similar to what I’m used to in Eclipse :). Or at least when clicking (selecting) on method or class to be able to see docs in some kind of view (window)?
By “docs” I assume you mean Intellisense tooltip? This tooltip will include XML documentation if that exists for the method. XML documentation in C# is described on MSDN. To add summary documentation to a method you add a special comment prefixed by
///:In VB.Net you can use the the same XML but will have to use
'''instead of///as the special comment character.You will have to compile the assembly using the
/docoption. You can enable it in the project properties:The generated XML file should follow the assembly if you copy it to another location.