Tag: Tags
Example for Documentation Tags
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace WindowsFormsApplication1 { #region testregion /// <summary> /// This is a test Class Form1 /// </summary> public partial class Form1 : Form { /// <summary> /// Constructor for the Form1 /// </summary> public Form1() { InitializeComponent(); } /// <summary> /// Form Load Event of the…
List of Tags used for XML Documentation Comments in C#
Following are the list of Tags that can be used for XML Documentation of your C# Sourcecode. 1. <c> – This is used to specify the description given within the <c> tag to be marked as code . 2. <code> – Indicate multiple lines of the description to be marked as code. 3. <example> – specifies an example for the code 4. <exception> – specifies…