Intellisence drop down box..comments yes..

What i did is a CLASS file with all my functions and methods in to it, but i was looking a way to add comments or a brief descriptions just like VB.NET do when you create a instance to a object and using is method or properties.


you know if you have 3 times a method with the same name inside a class but with diffirent parameters i would like to add a description saying something like "This is the method for bla bla bla" so i can know exactly what it does..and it look more professional....


can we do this... and how   

thanx guys !!!




Answer this question

Intellisence drop down box..comments yes..

  • CDR-Maverick-TG

    Ill just import a C# class file.to my VB project... so i can.. have the intellisence comments..

    thanx...

  • dklayman

    I assume you're talking about the comments you see when you drop down the list of IntelliSense values  This requires XML comments, so it's easy in C#. Not so easy in VB.NET. I remember seeing a VS.NET PowerToy that allows you to create XML comments, although I'm not sure it solves this particular problem. You might check that out, if you can.
  • Neurothustra

    The only method that this can be accomplished in VB is with an additional tool.  I believe that there is a tool available on MSDN (search for .NET Power Toys or XML Commenter).  There is also one being currently developed on GotDotNet.Com.
  • glenna

    where do i learn how to do it in C# and VB..any references 

    thank you..

  • HockeyNut

    i know how to change a code into a comment..

     just wish i could add image to explain... my problem..

      
      okay... you know when you create a instance to a object... like this


      Dim x as new MyClassName()

      x.InsertNewMember(string value, interger value)
      
      x.InsertNewMember(string value, interger value, object value)


      when doing so... when i type my InserNewMember I have a description of all parameters that i need to pass on... How do i add a description under my parameters values so i can describe each method individiualy.....

    hope..its enough.

  • asamper

    This is what i am looking for..

    in C# all you have to do is writing 3 back slash ///and bingo you can add comments for you Intellisence menue

    but why this feature is not available for VB   that is quite sad..for us...

    i found a third party software..that can do it for VB users but it is so complicated..and confusing...


    is there anyone who knows a good way for VB 


    thanx....

  • SuranaSaurabh

    Right. This is what I mentioned in my earlier message, and Jacob mentioned in his. Check it out -- it's the best you're going to find in VB.NET right now. 
  • Scott5

    How can i display a personnal description in a IntelliSense drop down menue from a method i made in a CLASS file !! 

     or where can i learn more about it ...

     for C# and VB.NET

     thank you very much !!

  • Intellisence drop down box..comments yes..