Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find a good example of C# /// xml documentation comments in use? [closed]

I'm looking for some good examples of .NET XML-style source code comments and all the various tags available in use. Where can I find some good examples?

like image 571
Nosrama Avatar asked Aug 04 '09 16:08

Nosrama


People also ask

What is C programming with example?

C language is a system programming language because it can be used to do low-level programming (for example driver and kernel). It is generally used to create hardware devices, OS, drivers, kernels, etc. For example, Linux kernel is written in C. It can't be used for internet programming like Java, .Net, PHP, etc.


2 Answers

Here's a list of the recommended tags in Visual Studio, and here's a list of C# samples - many of which should have XML docs in them. One of the examples in the C# download is "XMLDoc" - and the readme from that starts with the following...

XML Documentation Sample

This sample shows how to use XML to document code.

like image 63
Scott Ivey Avatar answered Oct 03 '22 05:10

Scott Ivey


Helpful links:

  • XML Comments Let You Build Documentation Directly From Your Visual Studio .NET Source Files
  • Producing Professional MSDN-style Documentation with .NET and NDoc
  • XML Tags Used for Documentation Comments
like image 43
lance Avatar answered Oct 03 '22 03:10

lance