Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Looking for a tool

Looking for a tool

Scheduled Pinned Locked Moved The Lounge
csharp
21 Posts 10 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • C Christian Graus

    He probably responded privately.

    Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog

    D Offline
    D Offline
    Dinuj Nath
    wrote on last edited by
    #6

    Christian Graus wrote:

    He probably responded privately.

    How do I view it? I have the message text in the mail, but the link to the tool is not there.

    -- Don't take life seriously because you can't come out of it alive. -Warren Miller

    D 1 Reply Last reply
    0
    • D Dinuj Nath

      Really. Was it a programming question?

      -- Don't take life seriously because you can't come out of it alive. -Warren Miller

      D Offline
      D Offline
      David Stone
      wrote on last edited by
      #7

      Pretty much. Just my opinion though. As far as actually finding that tool, is there a reason it has to be a Word doc? Couldn't you just use NDoc or Sandcastle and output HTML or CHM?

      225 years ago, we set an example for the rest of the world by creating a country where everyone could vote... Well, except for women and black people, but we fixed that! -Adam Duritz, of Counting Crows

      D A 2 Replies Last reply
      0
      • D Dinuj Nath

        Got a mail saying that a reply has been posted by Super Lloyd. But where is it?:confused:

        -- Don't take life seriously because you can't come out of it alive. -Warren Miller

        _ Offline
        _ Offline
        _AK_
        wrote on last edited by
        #8

        Or probably he would have deleted it after posting it, this can also be the cause. :)

        Best Regards, Apurva Kaushal

        1 Reply Last reply
        0
        • D Dinuj Nath

          Christian Graus wrote:

          He probably responded privately.

          How do I view it? I have the message text in the mail, but the link to the tool is not there.

          -- Don't take life seriously because you can't come out of it alive. -Warren Miller

          D Offline
          D Offline
          David Stone
          wrote on last edited by
          #9

          Does he mention the name of the tool?

          225 years ago, we set an example for the rest of the world by creating a country where everyone could vote... Well, except for women and black people, but we fixed that! -Adam Duritz, of Counting Crows

          D 1 Reply Last reply
          0
          • D David Stone

            Does he mention the name of the tool?

            225 years ago, we set an example for the rest of the world by creating a country where everyone could vote... Well, except for women and black people, but we fixed that! -Adam Duritz, of Counting Crows

            D Offline
            D Offline
            Dinuj Nath
            wrote on last edited by
            #10

            No.

            -- Don't take life seriously because you can't come out of it alive. -Warren Miller

            1 Reply Last reply
            0
            • D David Stone

              Pretty much. Just my opinion though. As far as actually finding that tool, is there a reason it has to be a Word doc? Couldn't you just use NDoc or Sandcastle and output HTML or CHM?

              225 years ago, we set an example for the rest of the world by creating a country where everyone could vote... Well, except for women and black people, but we fixed that! -Adam Duritz, of Counting Crows

              D Offline
              D Offline
              Dinuj Nath
              wrote on last edited by
              #11

              David Stone wrote:

              is there a reason it has to be a Word doc? Couldn't you just use NDoc or Sandcastle and output HTML or CHM

              I tried NDoc. The code is completely uncommented. If there are comments they are simple comments, not doc comments. I just want a tool that will dump a text file with a list of methods and their parameters and I will fill up the rest.

              -- Don't take life seriously because you can't come out of it alive. -Warren Miller

              D D 2 Replies Last reply
              0
              • D David Stone

                Pretty much. Just my opinion though. As far as actually finding that tool, is there a reason it has to be a Word doc? Couldn't you just use NDoc or Sandcastle and output HTML or CHM?

                225 years ago, we set an example for the rest of the world by creating a country where everyone could vote... Well, except for women and black people, but we fixed that! -Adam Duritz, of Counting Crows

                A Offline
                A Offline
                Agnihothra
                wrote on last edited by
                #12

                David Stone wrote:

                Pretty much. Just my opinion though.

                Sorry David, but that does not come under a programing question. Dinuj was not asking how to do that, but a tool that does a required task. These type of questions are always asked here in Lounge. Agni

                D 1 Reply Last reply
                0
                • D Dinuj Nath

                  David Stone wrote:

                  is there a reason it has to be a Word doc? Couldn't you just use NDoc or Sandcastle and output HTML or CHM

                  I tried NDoc. The code is completely uncommented. If there are comments they are simple comments, not doc comments. I just want a tool that will dump a text file with a list of methods and their parameters and I will fill up the rest.

                  -- Don't take life seriously because you can't come out of it alive. -Warren Miller

                  D Offline
                  D Offline
                  Dominik Reichl
                  wrote on last edited by
                  #13

                  It's a bit circumstantial, but you could try this: - Create a new class library project containing the class. - Compile it and delete all files of the project except the DLL. - Create another project and add a reference to the DLL. - In the project, somewhere declare an instance of the class in the DLL. - Right-click on the class name and select "Go to definition". Visual Studio now shows you a list of methods and properties of the class (from meta-information of the DLL). Of course, if you're going to document more classes like this, it may be better to search a tool that extracts the information you want automatically :)


                  _outp(0x64, 0xAD); and __asm mov al, 0xAD __asm out 0x64, al do the same... but what do they do?? ;) (doesn't work on NT)

                  1 Reply Last reply
                  0
                  • D Dinuj Nath

                    David Stone wrote:

                    is there a reason it has to be a Word doc? Couldn't you just use NDoc or Sandcastle and output HTML or CHM

                    I tried NDoc. The code is completely uncommented. If there are comments they are simple comments, not doc comments. I just want a tool that will dump a text file with a list of methods and their parameters and I will fill up the rest.

                    -- Don't take life seriously because you can't come out of it alive. -Warren Miller

                    D Offline
                    D Offline
                    David Stone
                    wrote on last edited by
                    #14

                    You could fire up Reflector and click on the class in the tree view. That'll give you a nice HTML representation of every member in that class. You could plug it into Word and then fill in comments afterwards. :)

                    225 years ago, we set an example for the rest of the world by creating a country where everyone could vote... Well, except for women and black people, but we fixed that! -Adam Duritz, of Counting Crows

                    1 Reply Last reply
                    0
                    • A Agnihothra

                      David Stone wrote:

                      Pretty much. Just my opinion though.

                      Sorry David, but that does not come under a programing question. Dinuj was not asking how to do that, but a tool that does a required task. These type of questions are always asked here in Lounge. Agni

                      D Offline
                      D Offline
                      David Stone
                      wrote on last edited by
                      #15

                      Meh. You might be right. I've been in a bit of a foul mood today, so I'm not exactly being the kindest person. And it looks like the one-voters have noticed.

                      225 years ago, we set an example for the rest of the world by creating a country where everyone could vote... Well, except for women and black people, but we fixed that! -Adam Duritz, of Counting Crows

                      1 Reply Last reply
                      0
                      • D Dinuj Nath

                        Hi, Need a tool that will document a vb.net/c# file/class. The tool should create a doc file with the constructor and methods in the class along with their parameters. Prefer free stuff. Thanks

                        -- Don't take life seriously because you can't come out of it alive. -Warren Miller

                        T Offline
                        T Offline
                        toxcct
                        wrote on last edited by
                        #16

                        DOxygen[^] is certainly the tool for you...


                        TOXCCT >>> GEII power

                        [VisualCalc 3.0  updated ][Flags Beginner's Guide  new! ]

                        1 Reply Last reply
                        0
                        • D Dinuj Nath

                          Hi, Need a tool that will document a vb.net/c# file/class. The tool should create a doc file with the constructor and methods in the class along with their parameters. Prefer free stuff. Thanks

                          -- Don't take life seriously because you can't come out of it alive. -Warren Miller

                          E Offline
                          E Offline
                          Ecologic
                          wrote on last edited by
                          #17

                          check out GhostDoc and DOxygen both in order. i m sure that DOxygen will solve ur problem for sure.

                          1 Reply Last reply
                          0
                          • D Dinuj Nath

                            Hi, Need a tool that will document a vb.net/c# file/class. The tool should create a doc file with the constructor and methods in the class along with their parameters. Prefer free stuff. Thanks

                            -- Don't take life seriously because you can't come out of it alive. -Warren Miller

                            D Offline
                            D Offline
                            Dinuj Nath
                            wrote on last edited by
                            #18

                            Thanks guys. You can always count on The Lounge.

                            -- Don't take life seriously because you can't come out of it alive. -Warren Miller

                            1 Reply Last reply
                            0
                            • D Dinuj Nath

                              Hi, Need a tool that will document a vb.net/c# file/class. The tool should create a doc file with the constructor and methods in the class along with their parameters. Prefer free stuff. Thanks

                              -- Don't take life seriously because you can't come out of it alive. -Warren Miller

                              M Offline
                              M Offline
                              Monty2
                              wrote on last edited by
                              #19

                              Dinuj Nath wrote:

                              Looking for a tool

                              Link should be around shortly :-D


                              I doubt therefore i might be :~

                              _ G 2 Replies Last reply
                              0
                              • M Monty2

                                Dinuj Nath wrote:

                                Looking for a tool

                                Link should be around shortly :-D


                                I doubt therefore i might be :~

                                _ Offline
                                _ Offline
                                _AK_
                                wrote on last edited by
                                #20

                                :laugh:

                                Best Regards, Apurva Kaushal

                                1 Reply Last reply
                                0
                                • M Monty2

                                  Dinuj Nath wrote:

                                  Looking for a tool

                                  Link should be around shortly :-D


                                  I doubt therefore i might be :~

                                  G Offline
                                  G Offline
                                  Gary Wheeler
                                  wrote on last edited by
                                  #21

                                  Wicked.


                                  Software Zen: delete this;

                                  1 Reply Last reply
                                  0
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes


                                  • Login

                                  • Don't have an account? Register

                                  • Login or register to search.
                                  • First post
                                    Last post
                                  0
                                  • Categories
                                  • Recent
                                  • Tags
                                  • Popular
                                  • World
                                  • Users
                                  • Groups