the components's comment
-
In the object browser, the comments of a class or its member's summary and parameters can be displayed at the bottom of the window (these comments use "///"). When I compile the project to a .dll, reference this .dll into another solution, the comments of the classes in this .dll can't displayed in object browser. Why? How can I fix it?
-
In the object browser, the comments of a class or its member's summary and parameters can be displayed at the bottom of the window (these comments use "///"). When I compile the project to a .dll, reference this .dll into another solution, the comments of the classes in this .dll can't displayed in object browser. Why? How can I fix it?
You need to: 1) Turn on XML comments in the library project 2) Name the file the same thing as the dll (ie utility.xml for utility.dll) If you do that, the IDE will find the comments.
-
You need to: 1) Turn on XML comments in the library project 2) Name the file the same thing as the dll (ie utility.xml for utility.dll) If you do that, the IDE will find the comments.
-
You need to: 1) Turn on XML comments in the library project 2) Name the file the same thing as the dll (ie utility.xml for utility.dll) If you do that, the IDE will find the comments.
-
I found that there is not a .xml document corresponds to .net library which involving .net classes. How does these library do that?
Can you give me an example
-
Can you give me an example