Tag: Documentation Comments

Documentation Comments in C#

In C# , you can create the Documentation Comments for your code using the predefined XML tags before the class or the block of the code thay refer to. For example namespace WindowsFormsApplication1 {     /// <summary>     /// This is a test Class Form1     /// </summary>     public partial class Form1 : Form     {         /// <summary>         /// Constructor for the…