Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
Showing results for
Show only
|
Search instead for
Did you mean:
Invite a Co-worker
Send a co-worker an invite to the portal.Just enter their email address and we'll connect them to register. After joining, they will belong to the same company.
You have entered an invalid email address. Please re-enter the email address.
This co-worker has already been invited to the Exchange portal. Please invite another co-worker.
Please enter email address
Send InviteCancel
Invitation Sent
Your invitation was sent.Thanks for sharing Exchange with your co-worker.
You can document as you develop - instead of having to painstakingly retrace your steps months later - by exploiting Visual Studio's XML documentation support. Visual Studio enables you to embed your comments in XML tags inside your code, then extract them to a free-standing XML file. The file can be marked-up any way you please or - best of all - the documented code can be passed straight to Sandcastle to simply and easily produce help files that can be referenced as needed.
The process is automated; Visual Studio will create and extract the tags for you. Type
'''
on the line before a member and Visual Studio will create the tags required to document it.
Tick the "Generate XML documentation file" box in Project -> Properties and Visual Studio will extract the tags to a file each time you compile. Visual Studio's built-in XML schema provides a wealth of functionality, including tags for hyperlinks and code samples. It also allows you to add tags of your own.
Sample
''' ''' Adds up all of the elements in an array of uintegers.''' '''
Sandcastle Help File Builder is a free tool that transforms XML-documented files into fully-featured Windows help (.CHM) files, complete with Contents, Index and Search functions, .NET language and scope filters, and inheritance hierarchy hyperlinks.
Once the Builder is set up, it's simple to use. All you have to do is create a project, add the files that you want to build from, and click "Build Project". Building can take a few minutes but the results are worth the wait. Needless to say, you need to have documented your code in XML beforehand.