Advertisement
tnngo2

XML Comments

Apr 4th, 2012
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.98 KB | None | 0 0
  1. /*
  2.  * XMLComments.cs
  3.  *
  4.  * Copyright © 2007 Aptech Software Limited. All rights reserved.
  5.  */
  6.  
  7. using System;
  8. using System.Collections.Generic;
  9. using System.Text;
  10.  
  11. namespace School
  12. {
  13.     /// <summary>
  14.     /// The program demonstrates the use of XML comments.
  15.     ///
  16.     /// Class XMLComments contains comments in XML.
  17.     /// </summary>
  18.     class XMLComments
  19.     {
  20.         /// <summary>
  21.         /// The entry point for the application
  22.         /// <param name="args">A list of command line arguments</param>
  23.         /// <returns>The return type of this method is void</returns>
  24.         /// </summary>
  25.         /// <remarks>
  26.         /// The method can be declared with or without parameters.
  27.         /// </remarks>
  28.  
  29.         // Main method begins here.
  30.         // Return type of main method is void.
  31.         static void Main(string[] args)
  32.         {
  33.             /*The WriteLine method is used to print the specified value.
  34.               The following statement uses the WriteLine method.*/
  35.             Console.WriteLine("This program illustrates XML Comments");
  36.         }
  37.     }// End of class
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement