How can i add description?????
-
:confused:Hi I want to add my custom description to my custom class or methods using asp.net. (e.g) .Tostring() is a method which has a custom description given by Msoft as "Converts the value of this instance to its equivalent string representation usingthe specified the format " Likewise i want to add my own customised message to my methods. can you give idea plz. I hope so u can clearly understand the ques. If not get back to me.
-
:confused:Hi I want to add my custom description to my custom class or methods using asp.net. (e.g) .Tostring() is a method which has a custom description given by Msoft as "Converts the value of this instance to its equivalent string representation usingthe specified the format " Likewise i want to add my own customised message to my methods. can you give idea plz. I hope so u can clearly understand the ques. If not get back to me.
Hi, before writting your function you have to type /// you will see like below.
/// <summary> /// Put your description here /// </summary> /// <param name="ctrl"></param> private void MyExample(Control ctrl) { }
hope it will help you.Thanks, Sun Rays To get something you must have to try once. My Articles
-
Hi, before writting your function you have to type /// you will see like below.
/// <summary> /// Put your description here /// </summary> /// <param name="ctrl"></param> private void MyExample(Control ctrl) { }
hope it will help you.Thanks, Sun Rays To get something you must have to try once. My Articles
yaa,it's working ... But I'm using webservice.. i've two classes in that service with some methods,properties.. I'm added discription to those methods and properties But the description is not getting in webapplication for those ... How can I get it??
-
yaa,it's working ... But I'm using webservice.. i've two classes in that service with some methods,properties.. I'm added discription to those methods and properties But the description is not getting in webapplication for those ... How can I get it??
The description which is shown in IntelliSense come from XML file. So, you should probably check whether this doc XML file exists or not.
Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net)