Mega Code Archive

 
Categories / C# Book / 01 Language Basics
 

0224 Xml Documentation

You can use predefined Xml tag to mark comments. The we use C# compiler with /doc option to generate Xml documentation for the source code. Xml documentation should be put inside ///. /// <summary>a method.</summary> public void aMethod() { ... }