How can i implement documentation in my dll class using vb.net
-
:((I'm working on a class (.dll) that i'm willing to publish on the internet.I'm desiging the class in VB.Net and the thing is that i want the users who implement my class in their projects to see characteristics of the methods they're using when they point at them in the object browser window ( you know when u wanna use a method or a function u must understant its behavior). I know that i can attach with my class a document file that explains the summary of the methods that class offers but i wanted it to be more prfessionnal. So is there any way i can do this? Joe Zeitouny zeitounybros@hotmail.com
-
:((I'm working on a class (.dll) that i'm willing to publish on the internet.I'm desiging the class in VB.Net and the thing is that i want the users who implement my class in their projects to see characteristics of the methods they're using when they point at them in the object browser window ( you know when u wanna use a method or a function u must understant its behavior). I know that i can attach with my class a document file that explains the summary of the methods that class offers but i wanted it to be more prfessionnal. So is there any way i can do this? Joe Zeitouny zeitounybros@hotmail.com
You can add your descriptions using attributes directly in your code. But, you still might want to include a documentation file of some kind to be complete. Search in the help for Visual Basic.NET for 'Attributes and Design-Time Support' for how to add descriptions and whatnot to your code. RageInTheMachine9532