CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Mar 2003
    Location
    Japan
    Posts
    120

    Description of Functions

    Hello,

    I would like to make descriptions for my defined functions. I had tried <summary> </summary>, but it only shows the summary within same class.

    I hope to see the descriptions of function wherever I call it in other class.
    How can I do that.. Thank you.
    Ee.... Sugoi Ne~~

  2. #2
    Join Date
    Dec 2003
    Location
    http://map.search.ch/zuerich.en.html
    Posts
    1,074
    It should work.

    However, "IntelliSense" only works if the function/method is actually valid in the particular context. ie. Is your new class 'using' your summarized class?

  3. #3
    Join Date
    Mar 2003
    Location
    Japan
    Posts
    120
    yes ..

    i don't know why?
    e.g.
    if I calling the class methods in other class, when I press ".", it shows a function, but can't show the description.

    how come???
    Ee.... Sugoi Ne~~

  4. #4
    Join Date
    Dec 2003
    Location
    http://map.search.ch/zuerich.en.html
    Posts
    1,074
    I don't have a problem with this if the classes are in the same solution.

    However, if I try to use the class in a new solution it does not show the summary. But then I assume it wouldn't be able to since I'm only linked to the DLL and not the source code.

    Otherwise I have no idea, sorry!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured