Advertisement
Aleksiev

C# Comments

Mar 13th, 2014
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.49 KB | None | 0 0
  1. /* Project Author: Ivan Ivanov
  2.  * Project Name: Software University Homework
  3.  *
  4.  * This is example comment
  5.  */
  6. using System;
  7.  
  8. class exampleComments
  9. {
  10.     static void Main()
  11.     {
  12.  
  13.         // Console.WriteLine("This will not be printed.");
  14.  
  15.         /*
  16.         Console.WriteLine("Multi-line comments.");
  17.         Console.WriteLine("Multi-line comments.");
  18.         Console.WriteLine("This will not be printed.");
  19.         */
  20.  
  21.         Console.WriteLine("This will be printed.");
  22.  
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement