Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * XMLComments.cs
- *
- * Copyright © 2007 Aptech Software Limited. All rights reserved.
- */
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace School
- {
- /// <summary>
- /// The program demonstrates the use of XML comments.
- ///
- /// Class XMLComments contains comments in XML.
- /// </summary>
- class XMLComments
- {
- /// <summary>
- /// The entry point for the application
- /// <param name="args">A list of command line arguments</param>
- /// <returns>The return type of this method is void</returns>
- /// </summary>
- /// <remarks>
- /// The method can be declared with or without parameters.
- /// </remarks>
- // Main method begins here.
- // Return type of main method is void.
- static void Main(string[] args)
- {
- /*The WriteLine method is used to print the specified value.
- The following statement uses the WriteLine method.*/
- Console.WriteLine("This program illustrates XML Comments");
- }
- }// End of class
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement